-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 854 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
{
"name": "arcgis-core-template",
"version": "1.0.0",
"description": "ArcGIS Maps SDK for JavaScript template using Vite and TypeScript",
"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.28",
"@esri/calcite-components": "1.9.2"
},
"devDependencies": {
"@types/sortablejs": "^1.15.1",
"tslib": "^2.6.2",
"typescript": "^5.1.3",
"vite": "^4.3.9",
"prettier": "^3.0.3",
"sass": "^1.63.4"
}
}