-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.46 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.46 KB
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
{
"name": "boilerplate",
"private": true,
"scripts": {
"prepare": "git config --local core.hooksPath .githooks && chmod +x .githooks/pre-commit",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test:jest": "jest --detectOpenHandles",
"test:coverage": "CI=1 yarn test:jest --coverage",
"precommit": "lint-staged",
"storybook": "start-storybook -p 6006 -s ./public",
"build-storybook": "build-storybook -s public",
"generate:api-client": "rm -r src/api | npx openapi2aspida"
},
"dependencies": {
"@aspida/axios": "1.7.1",
"@headlessui/react": "1.4.2",
"@heroicons/react": "1.0.5",
"@hookform/resolvers": "2.8.5",
"axios": "0.24.0",
"clsx": "1.1.1",
"dayjs": "1.10.7",
"immer": "9.0.7",
"intersection-observer": "0.12.0",
"next": "12.0.7",
"next-auth": "4.0.6",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-error-boundary": "3.1.4",
"react-hook-form": "7.22.4",
"react-query": "3.34.6",
"react-select": "5.2.1",
"use-immer": "0.6.0",
"zod": "3.11.6"
},
"devDependencies": {
"@babel/core": "7.16.5",
"@mswjs/data": "0.8.4",
"@storybook/addon-actions": "6.4.9",
"@storybook/addon-essentials": "6.4.9",
"@storybook/addon-interactions": "6.4.9",
"@storybook/addon-links": "6.4.9",
"@storybook/addon-postcss": "2.0.0",
"@storybook/builder-webpack5": "6.4.9",
"@storybook/manager-webpack5": "6.4.9",
"@storybook/react": "6.4.9",
"@storybook/testing-library": "0.0.7",
"@testing-library/jest-dom": "5.16.1",
"@testing-library/react": "12.1.2",
"@testing-library/react-hooks": "7.0.2",
"@testing-library/user-event": "13.5.0",
"@types/faker": "5.5.9",
"@types/jest": "27.0.3",
"@types/jsonwebtoken": "8.5.6",
"@types/node": "16.11.17",
"@types/react": "17.0.38",
"autoprefixer": "10.4.0",
"babel-loader": "8.2.3",
"eslint": "8.5.0",
"eslint-config-next": "12.0.7",
"eslint-plugin-storybook": "0.5.5",
"faker": "5.5.3",
"jest": "27.4.5",
"jsonwebtoken": "8.5.1",
"lint-staged": "12.1.3",
"msw": "0.36.3",
"postcss": "8.4.5",
"prettier": "2.5.1",
"react-test-renderer": "17.0.2",
"storybook-addon-next-router": "3.1.1",
"tailwindcss": "3.0.7",
"typescript": "4.5.4",
"webpack": "5.65.0"
},
"volta": {
"node": "16.13.1",
"yarn": "1.22.17"
},
"msw": {
"workerDirectory": "public"
}
}