-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 1.96 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
{
"name": "dangledangle-client",
"version": "0.1.0",
"packageManager": "[email protected]",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prepare": "husky install && bash -c 'chmod ug+x .husky/*'",
"lint": "eslint --fix .",
"format": "prettier --write ."
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"dependencies": {
"@hookform/resolvers": "^3.1.0",
"@tanstack/query-core": "^4.29.11",
"@tanstack/react-query": "^4.29.7",
"@vanilla-extract/css": "^1.11.0",
"@vanilla-extract/dynamic": "^2.0.3",
"@vanilla-extract/next-plugin": "^2.1.3",
"@vanilla-extract/recipes": "^0.4.0",
"clsx": "^1.2.1",
"dotenv-webpack": "^8.0.1",
"framer-motion": "^10.12.16",
"js-cookie": "^3.0.5",
"jsonwebtoken": "^9.0.1",
"ky": "^0.33.3",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"next": "13.4.2",
"react": "18.2.0",
"react-calendar": "^4.3.0",
"react-daum-postcode": "^3.1.3",
"react-dom": "18.2.0",
"react-hook-form": "^7.44.1",
"recoil": "^0.7.7",
"vanilla-reset": "^2021.11.29",
"yup": "^1.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@svgr/webpack": "^8.0.1",
"@tanstack/react-query-devtools": "^4.29.7",
"@types/js-cookie": "^3.0.3",
"@types/jsonwebtoken": "^9.0.2",
"@types/lodash": "^4.14.195",
"@types/node": "20.1.3",
"@types/react": "^18.2.11",
"@types/react-dom": "18.2.4",
"commitizen": "^4.3.0",
"cz-customizable": "^7.0.0",
"eslint": "^8.42.0",
"eslint-config-next": "13.4.2",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"typescript": "^5.1.3"
},
"config": {
"commitizen": {
"path": "cz-customizable"
}
}
}