-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) ยท 1.85 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
{
"name": "21st-all-rounder-team-1-web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --fix --cache",
"pretty": "prettier . --write --cache"
},
"dependencies": {
"@aws-sdk/signature-v4-crt": "^3.272.0",
"@material-ui/core": "^4.12.4",
"@next/font": "^13.0.6",
"@tanstack/react-query": "^4.19.1",
"@tanstack/react-query-devtools": "^4.19.1",
"@types/node": "18.11.10",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"aws-crt": "^1.15.9",
"aws-sdk": "^2.1300.0",
"axios": "^1.3.0",
"eslint-config-next": "^13.2.3",
"framer-motion": "^9.0.2",
"history": "^5.3.0",
"jotai": "^1.11.0",
"lottie-react": "^2.3.1",
"next": "^13.2.3",
"next-s3-upload": "^0.2.9",
"react": "^18.2.0",
"react-beforeunload": "^2.5.3",
"react-daum-postcode": "^3.1.1",
"react-dom": "^18.2.0",
"react-intersection-observer": "^9.4.1",
"styled-components": "^5.3.6",
"styled-normalize": "^8.0.7",
"typescript": "*",
"zustand": "^4.3.2"
},
"devDependencies": {
"@svgr/webpack": "^6.5.1",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.45.1",
"autoprefixer": "^10.4.13",
"babel-plugin-styled-components": "^2.0.7",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.31.11",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"postcss": "^8.4.21",
"prettier": "^2.8.0",
"prettier-plugin-tailwindcss": "^0.2.4",
"tailwindcss": "^3.2.7"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"yarn run pretty",
"yarn run lint"
]
}
}