This repository has been archived by the owner on Jan 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.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
65
66
67
68
69
70
{
"name": "nextjs-boilerplate",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"fix": "npm run prettier && npm run eslint:fix",
"stylelint": "stylelint './{src,.storybook}/**/*.{ts,tsx}'",
"prettier": "prettier './{src,.storybook}/**.{ts,tsx}' --write",
"eslint": "eslint '{src,.storybook}/**/*.{ts,tsx}'",
"eslint:fix": "npm run eslint -- --fix",
"lint": "npm run eslint && npm run stylelint",
"test": "jest",
"test:ci": "jest -c ./jest.config.ci.js",
"storybook": "sb dev -p 6066",
"build-storybook": "storybook build"
},
"dependencies": {
"@reduxjs/toolkit": "^1.8.1",
"next": "^13.0.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.5",
"styled-components": "^5.0.1"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@next/eslint-plugin-next": "^13.0.6",
"@sota1235/eslint-config": "^4.0.0",
"@storybook/addon-actions": "^7.0.0-alpha.56",
"@storybook/addon-links": "^7.0.0-alpha.56",
"@storybook/addons": "^7.0.0-alpha.56",
"@storybook/cli": "^7.0.0-alpha.56",
"@storybook/react-vite": "^7.0.0-alpha.56",
"@stylelint/postcss-css-in-js": "^0.38.0",
"@types/jest": "^29.0.0",
"@types/node": "20.8.10",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@types/styled-components": "5.1.34",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^29.0.0",
"babel-loader": "^9.0.0",
"babel-plugin-require-context-hook": "1.0.0",
"babel-plugin-styled-components": "2.1.4",
"core-js": "^3.8.2",
"eslint": "8.56.0",
"eslint-plugin-storybook": "^0.6.7",
"husky": "8.0.3",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.0.0",
"lint-staged": "15.1.0",
"postcss-syntax": "^0.36.2",
"prettier": "3.2.4",
"storybook": "^7.0.0-alpha.56",
"stylelint": "^14.0.1",
"stylelint-config-recommended": "14.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0",
"typescript": "^5.0.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"npm run fix"
]
}
}