-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.86 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "parcels",
"version": "2.3.11",
"scripts": {
"build": "vite build",
"copy:arcgis": "cpy \"./node_modules/@arcgis/core/assets/**\" ./public/assets",
"dev": "vite",
"fix": "npm run format:fix && npm run lint:fix",
"format:fix": "prettier --loglevel warn --write \"./**/*.{js,jsx,md}\" --ignore-path ./.ignore",
"format": "prettier --write ./ --ignore-path ./.ignore",
"lint:fix": "eslint ./ --ext .js --ext .jsx --quiet --fix --ignore-path ./.ignore",
"lint": "eslint ./ --ext .js --ext .jsx --ignore-path ./.ignore",
"prepare": "husky",
"release": "standard-version",
"serve": "vite preview",
"start": "npm run dev",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@arcgis/core": "^4.30.9",
"@headlessui/react": "^2.1.9",
"@ugrc/dart-board": "^5.0.13",
"@ugrc/layer-selector": "^6.2.8",
"@ugrc/utilities": "^2.2.6",
"clsx": "^2.1.1",
"downshift": "^9.0.8",
"firebase": "^10.14.0",
"ky": "^1.7.2",
"lodash.debounce": "^4.0.8",
"lodash.escaperegexp": "^4.1.2",
"lodash.sortby": "^4.7.0",
"lodash.startcase": "^4.4.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-toastify": "^10.0.5"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.3.2",
"autoprefixer": "^10.4.20",
"cpy-cli": "^5.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prop-types": "^15.8.1",
"react-test-renderer": "^18.3.1",
"sass": "^1.79.4",
"tailwindcss": "^3.4.13",
"vite": "^5.4.8",
"vite-plugin-package-version": "^1.1.0",
"vite-plugin-react": "^4.0.1"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2021,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"settings": {
"react": {
"version": "detect"
}
},
"env": {
"browser": true,
"jest": true,
"node": true
},
"rules": {
"react/jsx-uses-react": "off",
"react/react-in-jsx-scope": "off",
"react/prop-types": "off",
"prettier/prettier": "off"
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended",
"plugin:jsx-a11y/recommended",
"plugin:prettier/recommended",
"prettier"
]
},
"prettier": {
"singleQuote": true,
"printWidth": 120,
"semi": true
},
"lint-staged": {
"*.{js,jsx}": "eslint --cache --fix --ignore-path ./.ignore",
"*.{js,jsx,md}": "prettier --write --ignore-path ./.ignore"
}
}