-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) Β· 1.81 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
{
"name": "coplore_app",
"private": true,
"version": "0.0.1",
"description": "π @coploreλ μ½μΈμ λν μ€μκ° μ 보μ μλ κ±°λ μμ€ν
μ μ 곡νλ μ±μ
λλ€.",
"author": "chan9yu <[email protected]>",
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/coplore/coplore_app"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"config": {
"cz-customizable": {
"config": "./config/cz-config.js"
}
},
"scripts": {
"dev": "next dev -p 8080",
"build": "next build",
"start": "next start -p 80",
"lint": "next lint",
"commit": "./node_modules/cz-customizable/standalone.js",
"prepare": "husky install",
"husky:permission": "chmod +x .husky/*"
},
"dependencies": {
"@tanstack/react-query": "^5.20.5",
"@tanstack/react-query-devtools": "^5.20.5",
"@vanilla-extract/css": "^1.14.1",
"classnames": "^2.5.1",
"next": "14.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@types/node": "^20.0.0",
"@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"@vanilla-extract/next-plugin": "^2.3.6",
"commitizen": "^4.3.0",
"cz-customizable": "6.3.0",
"eslint": "^8.0.0",
"eslint-config-next": "14.0.3",
"eslint-config-prettier": "^9.0.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"sass": "^1.70.0",
"typescript": "^5.3.2"
}
}