-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.23 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
{
"name": "movies",
"scripts": {
"dev": "vite",
"build": "vite build",
"typecheck": "tsc",
"lint": "eslint src"
},
"dependencies": {
"@primer/octicons-react": "^19.8.0",
"axios": "^1.6.0",
"classnames": "^2.3.2",
"firebase": "^10.5.2",
"localforage": "^1.10.0",
"ramda": "^0.29.1",
"react": "^18.2.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.2.0",
"react-router-dom": "^6.17.0"
},
"devDependencies": {
"@tsconfig/vite-react": "^2.0.1",
"@types/classnames": "^2.3.1",
"@types/node": "^20.8.9",
"@types/ramda": "^0.29.7",
"@types/react": "^18.2.33",
"@types/react-dom": "^18.2.14",
"@types/react-router-dom": "^5.3.3",
"@vitejs/plugin-react-swc": "^3.4.0",
"eslint": "^8.52.0",
"eslint-config-react-app": "^7.0.1",
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"prettier": "^3.0.3",
"sass": "^1.69.5",
"simple-git-hooks": "^2.9.0",
"typescript": "^5.2.2",
"vite": "^4.5.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged --concurrent false"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown",
"src/**/*.{ts,tsx}": "eslint --max-warnings=0"
}
}