-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2 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
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"format": "prettier --cache --write .",
"lint": "eslint --cache .",
"postinstall": "husky install"
},
"dependencies": {
"@dgswcns/cns-funnel": "^0.0.13",
"@dgswcns/common-ui": "^0.1.0",
"@dgswcns/design-token": "^1.0.7",
"@dgswcns/react-styled-theme": "^0.1.7",
"@dgswcns/react-theming": "^0.0.4",
"@tanstack/react-query": "^4.36.1",
"@types/axios": "^0.14.0",
"eslint": "^8.0.1",
"eslint-config-next": "13.2.3",
"faker": "^6.6.6",
"jotai": "^2.8.4",
"js-cookie": "^3.0.5",
"next": "13.2.3",
"openai": "^4.26.0",
"react": "18.2.0",
"react-daum-postcode": "^3.1.3",
"react-dom": "18.2.0",
"react-hook-form": "^7.45.4",
"react-icons": "^4.10.1",
"react-loading-skeleton": "^3.4.0",
"react-modal": "^3.16.1",
"react-multi-date-picker": "^4.3.1",
"react-query": "^3.39.3",
"recoil": "^0.7.7",
"styled-components": "^5.3.8",
"typescript": "*"
},
"packageManager": "[email protected]",
"devDependencies": {
"@svgr/webpack": "^8.1.0",
"@types/node": "^20.2.5",
"@types/react": "^18.2.7",
"@types/react-dom": "^18.2.4",
"@types/react-modal": "^3.16.3",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"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.32.2",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"styled-reset": "^4.4.7",
"typescript": "^5.0.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
]
}
}
}