-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 916 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "arcgis-core-template",
"version": "1.0.0",
"description": "ArcGIS Maps SDK for JavaScript template using Vite and TypeScript",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/arnofiva/arcgis-core-template"
},
"author": "Arno Fiva",
"scripts": {
"start": "vite",
"dev": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"lint": "concurrently --group --prefix none \"npm:lint:*\"",
"lint:typecheck": "tsc --noEmit",
"lint:prettier": "prettier --write 'src/**/*.{js,jsx,ts,tsx,css,scss}'"
},
"dependencies": {
"@arcgis/core": "4.31",
"@arcgis/map-components": "^4.31.6",
"@esri/calcite-components": "2.13.2"
},
"devDependencies": {
"@types/sortablejs": "^1.15.8",
"prettier": "^3.3.3",
"sass": "^1.81.0",
"tslib": "^2.8.1",
"typescript": "^5.6.3",
"vite": "^5.4.11"
}
}