generated from agrc/atlas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.2 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "wfrc-bike-map",
"version": "0.3.0",
"private": true,
"type": "module",
"scripts": {
"build": "vite build",
"copy:arcgis": "cpy \"./node_modules/@arcgis/core/assets/**\" ./public/esri-core/assets",
"copy:calcite": "cpy \"./node_modules/@esri/calcite-components/dist/calcite/assets/**\" ./public/esri-calcite/assets",
"dev": "npm start",
"format": "prettier . --write",
"postinstall": "npm run copy:arcgis && npm run copy:calcite",
"lint": "eslint .",
"preview": "vite preview",
"start": "vite",
"test": "vitest"
},
"browserslist": {
"production": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"prettier": {
"plugins": [
"prettier-plugin-organize-imports",
"prettier-plugin-packagejson",
"prettier-plugin-organize-attributes"
],
"singleQuote": true
},
"eslintConfig": {
"env": {
"browser": true,
"es2022": true,
"node": true
},
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": [
"prettier",
"import",
"jsx-a11y"
],
"extends": [
"eslint:recommended",
"plugin:import/recommended",
"plugin:jsx-a11y/recommended",
"prettier"
],
"ignorePatterns": [
"dist/**"
]
},
"dependencies": {
"@arcgis/core": "^4.30.9",
"@esri/calcite-components": "^2.13.0"
},
"devDependencies": {
"autoprefixer": "^10.4.20",
"cpy-cli": "^5.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-cypress": "^3.5.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-prettier": "^5.2.1",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-organize-attributes": "^1.0.0",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-packagejson": "^2.5.2",
"tailwindcss": "^3.4.13",
"vite": "^5.4.8",
"vite-plugin-package-version": "^1.1.0",
"vitest": "^2.1.2"
}
}