-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
140 lines (140 loc) · 4.38 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "@ugrc/turn-gps-billpay-app",
"description": "A React app for the UGRC TURN GPS Bill Pay",
"private": true,
"version": "1.2.6",
"license": "MIT",
"author": "UGRC",
"main": "./src/functions/index.mjs",
"type": "module",
"scripts": {
"start": "concurrently 'cross-env NODE_ENV=development wait-on http://127.0.0.1:4000 && npm run dev:vite' 'cross-env NODE_ENV=development npm run dev:firebase'",
"dev:firebase": "cross-env NODE_ENV=development firebase emulators:start --import .firebase-export --only auth,functions,firestore",
"save-firebase-state": "cross-env NODE_ENV=development firebase emulators:start --import .firebase-export --export-on-exit --only auth,functions,firestore",
"debug-firebase": "cross-env NODE_ENV=development firebase emulators:start --import .firebase-export --only auth,functions,firestore --inspect-functions --debug",
"dev:vite": "vite",
"build": "vite build",
"cleaninstall_win": "@powershell -NoProfile -ExecutionPolicy Unrestricted -Command ./scripts/cleaninstall_win.ps1",
"eslint": "npx eslint .",
"postinstall": "cd functions && npm install",
"preview": "vite preview",
"lint": "eslint ./ --ext .js,.mjs,.jsx --ignore-path ./.eslintignore",
"lint:fix": "eslint ./ --ext .js,.mjs,.jsx --quiet --fix --ignore-path ./.eslintignore",
"format": "prettier . --write",
"fb:serve": "cross-env NODE_ENV=development firebase emulators:start --only functions",
"fb:deploy": "firebase deploy --only functions",
"graphql": "node functions/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@hookform/error-message": "2.0.1",
"@hookform/resolvers": "3.9.1",
"@tanstack/react-query": "5.62.11",
"@tanstack/react-query-devtools": "5.62.11",
"@utahdts/utah-design-system": "3.0.3",
"@utahdts/utah-design-system-header": "3.0.3",
"firebase": "^9.23.0",
"firebase-admin": "13.0.2",
"lodash": "4.17.21",
"prop-types": "15.8.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "7.54.2",
"react-router": "^7.1.1",
"reactfire": "4.2.3",
"use-immer": "0.11.0",
"yup": "1.6.1",
"yup-phone-lite": "2.0.1"
},
"devDependencies": {
"@babel/eslint-parser": "7.25.9",
"@babel/plugin-syntax-import-assertions": "7.26.0",
"@babel/preset-react": "7.26.3",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.0",
"@vitejs/plugin-react-swc": "3.7.2",
"concurrently": "^9.1.2",
"cross-env": "7.0.3",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.37.3",
"eslint-plugin-react-hooks": "5.1.0",
"eslint-plugin-react-refresh": "0.4.16",
"firebase-tools": "13.29.1",
"lint-staged": "15.3.0",
"prettier": "3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-packagejson": "^2.5.6",
"sass": "1.83.0",
"vite": "6.0.7",
"vite-plugin-eslint": "1.8.1",
"vite-plugin-mkcert": "1.17.6",
"vite-plugin-package-version": "1.1.0",
"wait-on": "^8.0.1"
},
"eslintConfig": {
"env": {
"browser": true,
"es2021": true,
"node": true,
"jest": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:react/jsx-runtime",
"plugin:react-hooks/recommended",
"plugin:jsx-a11y/recommended",
"prettier"
],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": [
"react",
"prettier",
"jsx-a11y",
"react-hooks",
"react-refresh"
],
"rules": {
"react-refresh/only-export-components": "warn"
},
"settings": {
"react": {
"version": "detect"
}
}
},
"prettier": {
"singleQuote": true,
"semi": true
},
"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"
]
},
"lint-staged": {
"*.{js,jsx,mjs}": "eslint --cache --fix",
"*.{md,yml,yaml,json}": "prettier --write"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}