-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 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
{
"name": "geekcamp2023-vol2-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"check-types": "npx tsc --noEmit --jsx react-jsx",
"eslint:fix": "next lint --fix",
"format": "prettier --write \"src/**/*.{tsx,ts,js,json,css,scss}\"",
"check": "prettier -c \"src/**/*.{tsx,ts,js,json,css,scss}\"",
"lint:fix": "npm run format&&npm run eslint:fix&&npm run check-types",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"mock-server": "node src/mock/server.js"
},
"dependencies": {
"@sinclair/typebox": "^0.28.20",
"@tanstack/react-query": "^4.32.5",
"@types/node": "^20.4.7",
"@types/react": "^18.2.18",
"@types/react-dom": "^18.2.7",
"eslint-config-next": "^13.4.12",
"material-icons": "^1.13.9",
"next": "^13.4.12",
"next-auth": "^4.22.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-sortablejs": "^6.1.4",
"react-toastify": "^9.1.3",
"sass": "^1.64.2",
"sortablejs": "^1.15.0",
"typescript": "^5.1.6",
"zustand": "^4.4.0"
},
"devDependencies": {
"@storybook/addon-essentials": "7.0.18",
"@storybook/addon-interactions": "7.0.18",
"@storybook/addon-links": "7.0.18",
"@storybook/blocks": "7.0.18",
"@storybook/nextjs": "7.0.18",
"@storybook/react": "7.0.18",
"@storybook/testing-library": "0.0.14-next.2",
"@types/express": "^4.17.17",
"@types/sortablejs": "^1.15.1",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"eslint": "^8.46.0",
"eslint-config-next": "^13.2.4",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-storybook": "^0.6.13",
"express": "^4.18.2",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "^2.8.8",
"storybook": "7.0.18",
"ts-node": "^10.9.1"
}
}