-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.22 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
{
"browserslist": [
">0.3%",
"not ie 11",
"not dead",
"not op_mini all"
],
"dependencies": {
"next": "^9.5.3",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"scripts": {
"start:book": "start-storybook -p 7777",
"build:book": "build-storybook",
"start": "next dev",
"build": "NODE_ENV=production next build && next export",
"lint": "eslint ./pages",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-react": "^7.10.4",
"@storybook/addon-essentials": "^6.0.21",
"@storybook/react": "^6.0.21",
"@types/jest": "^26.0.13",
"autoprefixer": "^9.8.6",
"babel-jest": "^26.3.0",
"css-loader": "^4.2.2",
"eslint": "^7.9.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.3.0",
"jest": "^26.4.2",
"postcss-loader": "^4.0.0",
"prettier": "^2.1.1",
"react-test-renderer": "^16.13.1",
"storybook": "^6.0.21",
"style-loader": "^1.2.1",
"tailwindcss": "^1.8.8"
}
}