-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.31 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
{
"name": "chalkdust",
"version": "2.1.19",
"scripts": {
"start": "npm run dev",
"dev": "vite",
"dev:function": "nodemon --inspect=0.0.0.0 --watch function/index.js node_modules/@google-cloud/functions-framework --target=sendgrid",
"build": "vite build",
"format": "prettier --write src --ignore-path ./.gitignore",
"lint": "NODE_ENV=development eslint --ext .jsx src",
"serve": "vite preview"
},
"dependencies": {
"@arcgis/core": "^4.30.9",
"@sendgrid/client": "^8.1.3",
"firebase": "^10.14.0",
"proj4": "^2.12.1",
"query-string": "^9.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.0.13",
"vite-plugin-package-version": "^1.1.0",
"yup": "^1.4.0"
},
"devDependencies": {
"@babel/preset-react": "^7.24.7",
"@google-cloud/functions-framework": "^3.4.2",
"@vitejs/plugin-react": "^4.3.2",
"autoprefixer": "^10.4.20",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.30.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",
"firebase-tools": "^13.20.2",
"http-server": "^14.1.1",
"nodemon": "^3.1.7",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-packagejson": "^2.5.2",
"tailwindcss": "^3.4.13",
"vite": "^5.4.8",
"vite-plugin-eslint": "^1.8.1"
},
"eslintConfig": {
"env": {
"browser": true,
"es2022": true,
"node": true
},
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": "latest",
"sourceType": "module"
},
"settings": {
"react": {
"version": "detect"
}
},
"plugins": [
"react",
"prettier",
"import",
"jsx-a11y",
"react-hooks"
],
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:react/jsx-runtime",
"plugin:react-hooks/recommended",
"plugin:import/recommended",
"plugin:jsx-a11y/recommended",
"prettier"
],
"ignorePatterns": [
"dist/**"
]
},
"prettier": {
"singleQuote": true,
"printWidth": 120
}
}