-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (68 loc) · 2.01 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
{
"name": "boilerplate",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"prepare": "husky install",
"test": "jest",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"generate": "yarn plop --plopfile generators/plopfile.js"
},
"lint-staged": {
"src/**/*": [
"npm run lint --fix",
"npm run test --findRelatedTests --bail --passWithNoTests"
]
},
"dependencies": {
"@storybook/react-webpack5": "^7.0.5",
"@types/styled-components": "^5.1.26",
"babel-plugin-styled-components": "^2.1.4",
"next": "13.3.1",
"next-pwa": "^5.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^6.0.6"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-typescript": "^7.21.0",
"@storybook/addon-essentials": "^7.0.2",
"@storybook/addon-interactions": "^7.1.1",
"@storybook/addon-links": "^7.0.2",
"@storybook/blocks": "^7.0.5",
"@storybook/nextjs": "^7.0.27",
"@storybook/react": "^7.2.3",
"@storybook/testing-library": "^0.2.0",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.2",
"@types/node": "18.16.3",
"@types/react": "18.2.20",
"@types/react-dom": "18.2.4",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.59.8",
"babel-loader": "^9.1.2",
"eslint": "8.45.0",
"eslint-config-next": "13.3.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.11",
"husky": "^8.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.6.2",
"jest-styled-components": "^7.1.1",
"lint-staged": "^13.2.1",
"plop": "^3.1.2",
"prettier": "2.8.8",
"storybook": "^7.1.1",
"typescript": "5.0.4"
}
}