generated from neuefische/capstone-next-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.47 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
{
"name": "react-app",
"description": "React.js template",
"private": true,
"license": "MIT",
"scripts": {
"build": "next build",
"dev": "next",
"lint": "npm run eslint && npm run stylelint && next lint",
"eslint": "eslint '**/*.{js,jsx}'",
"eslint:fix": "npm run eslint -- --fix",
"prepare": "npx husky install",
"start": "next start",
"stylelint": "npx stylelint src/{**/*,*}.{js,jsx}",
"storybook": "start-storybook -p 6006 -s public",
"storybook:build": "build-storybook -s public",
"test": "jest",
"test:watch": "jest --watchAll",
"toc": "npx markdown-toc@1 README.md -i"
},
"dependencies": {
"axios": "0.27.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"styled-components": "5.3.5",
"nanoid": "3.3.4",
"next": "12.3.0",
"zustand": "4.1.1"
},
"devDependencies": {
"@jest/globals": "^29.0.3",
"@mdx-js/react": "^2.1.3",
"@storybook/addon-actions": "^6.5.12",
"@storybook/addon-essentials": "^6.5.12",
"@storybook/addon-interactions": "^6.5.12",
"@storybook/addon-links": "^6.5.12",
"@storybook/builder-webpack5": "^6.5.12",
"@storybook/manager-webpack5": "^6.5.12",
"@storybook/node-logger": "^6.5.12",
"@storybook/preset-create-react-app": "^4.1.2",
"@storybook/react": "^6.5.12",
"@storybook/testing-library": "^0.0.13",
"@swc/core": "^1.3.1",
"@swc/jest": "^0.2.22",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"eslint": "^8.23.1",
"eslint-config-next": "^12.3.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-jest": "^27.0.4",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.4",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unicorn": "^43.0.2",
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.0.3",
"lint-staged": "^13.0.3",
"postcss-syntax": "^0.36.2",
"prettier": "^2.7.1",
"react-scripts": "^5.0.1",
"stylelint": "^13.13.1",
"stylelint-a11y": "^1.2.3",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-property-sort-order-smacss": "^7.1.0",
"stylelint-config-standard": "^22.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-order": "^4.1.0",
"stylelint-processor-styled-components": "^1.10.0"
},
"overrides": {
"react-refresh": "0.11.0"
}
}