-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
64 lines (64 loc) · 1.9 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
{
"name": "ce-spun-studentii",
"private": true,
"version": "0.0.0",
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"deploy": "npm run build && firebase deploy",
"seed:firestore": "ts-node --project tsconfig.node.json src/scripts/seedFirestore.ts",
"csv:firestore": "node src/scripts/csvToJSON.js",
"prepare": "husky install",
"format": "prettier --write --ignore-unknown"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.8",
"@mui/material": "^5.14.8",
"@mui/styled-engine-sc": "^5.14.8",
"@rollup/plugin-node-resolve": "^15.2.1",
"@types/styled-components": "^5.1.24",
"firebase": "^9.6.8",
"lint-staged": "^14.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-firebase-hooks": "^5.0.3",
"react-router-dom": "^6.15.0",
"react-toastify": "^9.1.3",
"styled-components": "^5.3.3",
"zustand": "^4.4.1"
},
"devDependencies": {
"@types/howler": "^2.2.8",
"@types/react": "^17.0.65",
"@types/react-dom": "^17.0.20",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"@vitejs/plugin-react": "^4.0.4",
"autoprefixer": "^10.4.4",
"eslint": "^8.49.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"firebase-tools": "^12.5.4",
"husky": "^8.0.0",
"postcss": "^8.4.28",
"prettier": "^3.0.3",
"tailwindcss": "^3.3.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"vite": "^4.4.9"
},
"lint-staged": {
"*": [
"npm run format"
]
}
}