-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
91 lines (91 loc) · 2.55 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "sopt.org",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --ignore-path .gitignore .",
"format": "eslint --ignore-path .gitignore --fix . && prettier . --write"
},
"dependencies": {
"@amplitude/analytics-browser": "^2.3.0",
"@emotion/is-prop-valid": "^1.2.1",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@sopt-makers/colors": "^2.2.0",
"@tanstack/react-query": "^5.28.9",
"@tanstack/react-query-devtools": "^5.28.10",
"@types/qs": "6.9.7",
"@types/react-slick": "^0.23.12",
"axios": "^0.27.2",
"dayjs": "^1.11.3",
"framer-motion": "10.16.5",
"nanoid": "4.0.2",
"next": "13.3.0",
"qs": "6.11.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-responsive": "9.0.0-beta.10",
"react-slick": "^0.29.0",
"shortid": "^2.2.16",
"slick-carousel": "^1.8.1"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/plugin-transform-runtime": "^7.18.10",
"@babel/preset-env": "^7.18.2",
"@babel/runtime": "^7.18.9",
"@emotion/babel-plugin": "^11.10.0",
"@svgr/webpack": "^6.5.0",
"@tanstack/eslint-plugin-query": "^5.28.6",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@types/nanoid": "^3.0.0",
"@types/node": "17.0.38",
"@types/react": "18.0.10",
"@types/react-dom": "18.0.5",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"await-to-js": "^3.0.0",
"babel-plugin-inline-react-svg": "^2.0.1",
"babel-plugin-module-resolver": "^4.1.0",
"depcheck": "^1.4.7",
"eslint": "^8.16.0",
"eslint-config-next": "13.3.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"git-cz": "^4.9.0",
"husky": "^8.0.1",
"lint-staged": "^11.1.4",
"node-mocks-http": "^1.11.0",
"postcss": "^8.4.16",
"postcss-html": "^1.4.1",
"postcss-syntax": "^0.36.2",
"prettier": "^2.6.2",
"ts-loader": "^9.3.0",
"ts-pattern": "^4.0.5",
"typescript": "4.7.2",
"url-loader": "^4.1.1",
"webpack": "^5.74.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "git-cz"
}
},
"engines": {
"npm": "please-use-pnpm",
"yarn": "please-use-pnpm"
}
}