-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.14 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": "next-boilerplate",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write '{**/*,*}.{js,ts,jsx,tsx}' --cache",
"test": "jest",
"e2e": "cypress open",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"postinstall": "typesync --ignoredeps=dev && npm dedupe"
},
"dependencies": {
"next": "12.2.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-query": "3.39.2",
"zustand": "4.0.0-rc.2"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.8",
"@babel/preset-typescript": "^7.16.7",
"@storybook/addon-actions": "^6.5.7",
"@storybook/addon-essentials": "^6.5.7",
"@storybook/addon-links": "^6.5.7",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/react": "^6.5.7",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^13.0.0",
"@types/jest": "^28.1.1",
"@types/node": "17.0.8",
"@types/react": "18.0.12",
"@types/react-dom": "18.0.5",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"autoprefixer": "^10.4.2",
"babel-jest": "^28.0.0",
"babel-loader": "^8.2.3",
"chromatic": "^6.5.3",
"cpoo": "1.2.0",
"cypress": "^10.0.3",
"depcheck": "^1.4.3",
"esbuild-loader": "^2.19.0",
"eslint": "8.12.0",
"eslint-config-next": "12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-strict-dependencies": "^1.0.1",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.1",
"jest": "28.1.1",
"jest-environment-jsdom": "^28.1.1",
"msw": "^0.42.0",
"postcss": "^8.4.6",
"prettier": "^2.7.0",
"tailwindcss": "^3.0.18",
"ts-node": "^10.8.1",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typescript": "4.7.3",
"typesync": "0.9.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run format"
}
}
}