-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.64 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
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint:fix": "eslint src/**/**/*.js pages/**/**/*.js --fix",
"lint": "eslint src/**/**/*.js pages/**/**/*.js",
"prettify": "prettier src/**/**/*.js pages/**/**/*.js --write"
},
"eslintConfig": {
"extends": [
"react-app",
"plugin:prettier/recommended"
]
},
"prettier": {
"printWidth": 90,
"bracketSpacing": true,
"trailingComma": "es5",
"semi": false,
"singleQuote": true,
"endOfLine": "auto"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "npm run lint:fix"
},
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@mui/lab": "^5.0.0-alpha.68",
"@mui/material": "^5.3.1",
"@mui/x-data-grid": "^5.9.0",
"axios": "^0.26.0",
"date-fns": "^2.28.0",
"dotenv": "^16.0.0",
"firebase": "^9.6.7",
"next": "^12.1.0",
"next-images": "^1.8.4",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "^4.3.1",
"react-loading": "^2.0.3",
"react-player": "^2.9.0",
"react-redux": "^7.2.6",
"react-scripts": "5.0.0",
"react-toastify": "^8.2.0",
"redux": "^4.1.2",
"redux-thunk": "^2.4.1",
"swr": "^1.2.2",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"autoprefixer": "^10.4.2",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.3",
"postcss": "^8.4.6",
"prettier": "^2.5.1",
"tailwindcss": "^3.0.18"
}
}