-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
117 lines (117 loc) · 3.8 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "13th-1st-frontend",
"version": "1.0.1",
"private": true,
"scripts": {
"dev": "NODE_OPTIONS='--no-experimental-fetch' next dev",
"build": "next build",
"start": "next start",
"test": "jest",
"test:watch": "jest --watch",
"lint": "next lint",
"host": "next dev -H $(node -e \"var ip = require('ip'); console.log(ip.address())\")",
"lint:fix": "next lint --fix",
"format": "prettier --write 'src/**/*.{ts,tsx,js,jsx}'",
"lint:type": "tsc --noEmit",
"prepare": "if [ \"$HUSKY\" != \"0\" ]; then husky install; fi",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"chromatic": "npx chromatic --project-token=${CHROMATIC_PROJECT_TOKEN}",
"generate:interface:own": "npx openapi-typescript https://api.jalingobi.com/v3/api-docs/%EC%9E%90%EB%A6%B0%EA%B3%A0%EB%B9%84%20API%20v1 --output ./src/lib/interfaces/api.interface.ts"
},
"dependencies": {
"@hookform/resolvers": "^3.1.0",
"@radix-ui/react-dialog": "^1.0.4",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tooltip": "^1.0.6",
"@suspensive/react": "^1.11.2",
"@suspensive/react-query": "^1.11.2",
"@tanstack/react-query": "^4.29.13",
"@tanstack/react-query-devtools": "^4.29.13",
"axios": "^1.4.0",
"class-variance-authority": "^0.6.0",
"clsx": "^1.2.1",
"dayjs": "^1.11.8",
"lodash-es": "^4.17.21",
"lucide-react": "^0.233.0",
"next": "13.3.0",
"nock": "^13.3.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.44.3",
"tailwind-merge": "^1.13.0",
"tailwind-scrollbar-hide": "^1.1.7",
"tailwindcss-animate": "^1.0.5",
"uuid": "^9.0.0",
"zod": "^3.21.4",
"zustand": "^4.3.8"
},
"devDependencies": {
"@babel/preset-env": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@storybook/addon-essentials": "^7.0.18",
"@storybook/addon-interactions": "^7.0.18",
"@storybook/addon-links": "^7.0.18",
"@storybook/addon-styling": "^1.0.8",
"@storybook/blocks": "^7.0.18",
"@storybook/nextjs": "^7.0.18",
"@storybook/react": "^7.0.18",
"@storybook/testing-library": "^0.0.14-next.2",
"@svgr/webpack": "^8.0.1",
"@tanstack/eslint-plugin-query": "^4.29.9",
"@testing-library/dom": "^9.3.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.2",
"@types/lodash-es": "^4.17.7",
"@types/node": "18.15.11",
"@types/react": "18.0.35",
"@types/react-dom": "18.0.11",
"@types/testing-library__jest-dom": "^5.14.7",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"autoprefixer": "10.4.14",
"babel-jest": "^29.5.0",
"chromatic": "^6.18.0",
"eslint": "8.38.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "13.3.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-storybook": "^0.6.12",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.0",
"ip": "^1.1.8",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.6.0",
"lint-staged": "^13.2.2",
"msw": "1.2.0",
"openapi-typescript": "^6.2.6",
"postcss": "8.4.22",
"prettier": "^2.8.7",
"prettier-plugin-tailwindcss": "^0.3.0",
"storybook": "^7.0.18",
"tailwindcss": "3.3.1",
"ts-jest": "^29.1.0",
"tsconfig-paths-webpack-plugin": "^4.0.1",
"typescript": "5.0.4"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --cache --fix",
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"msw": {
"workerDirectory": "public"
}
}