-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.83 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.83 KB
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
{
"name": "packman",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"analyze": "ANALYZE=true next build",
"prepare": "husky install"
},
"dependencies": {
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@mui/material": "^5.9.0",
"@mui/styles": "^5.9.0",
"@next/bundle-analyzer": "^13.3.0",
"@types/react-cookies": "^0.1.0",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/styled-components": "^5.1.25",
"axios": "^0.27.2",
"eslint-plugin-next": "^0.0.0",
"immer": "^9.0.15",
"lottie-react": "^2.3.1",
"next": "12.2.0",
"next-compose-plugins": "^2.2.1",
"next-pwa": "^5.5.4",
"react": "18.2.0",
"react-cookies": "^0.1.1",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "18.2.0",
"react-error-boundary": "^3.1.4",
"react-query": "^3.39.1",
"recoil": "^0.7.4",
"recoil-persist": "^4.2.0",
"styled-components": "^5.3.5",
"styled-reset": "^4.4.2",
"swiper": "^8.3.1"
},
"devDependencies": {
"@next/eslint-plugin-next": "^12.2.0",
"@types/node": "18.0.1",
"@types/react": "18.0.14",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"babel-plugin-styled-components": "^2.0.7",
"eslint": "^8.19.0",
"eslint-config-next": "12.2.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": ">=6",
"lint-staged": ">=10",
"next-cookies": "^2.0.3",
"next-seo": "^5.15.0",
"prettier": "^2.7.1",
"typescript": "^4.8.2"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --cache --fix",
"prettier --write"
]
}
}