-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.61 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "baemin-order-survey",
"version": "0.1.0",
"private": true,
"dependencies": {
"@reduxjs/toolkit": "^1.4.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"@types/antd": "^1.0.0",
"@types/jest": "^24.9.1",
"@types/node": "^12.12.61",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"@types/react-redux": "^7.1.9",
"@types/react-router-dom": "^5.1.5",
"@types/uuid": "^8.3.0",
"antd": "^4.6.4",
"customize-cra": "^1.0.0",
"firebase": "^9.0.0-beta.2",
"preact": "^10.4.8",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.1",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.3",
"tsconfig-paths-webpack-plugin": "^3.5.1",
"typescript": "^3.9.9",
"uuid": "^8.3.1",
"webpack-bundle-analyzer": "^3.9.0",
"webpack-merge": "^5.7.3"
},
"scripts": {
"start": "react-app-rewired start",
"start:mock": "REACT_APP_USE_MOCK=1 npm start",
"build": "GENERATE_SOURCEMAP=false react-app-rewired build",
"deploy:gh-pages": "gh-pages -d build -b gh-pages",
"test": "react-app-rewired test",
"eject": "react-app-rewired eject",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"lint:fix": "eslint --fix 'src/**/*.{ts,tsx}'",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public"
},
"eslintConfig": {
"extends": "react-app",
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@storybook/addon-actions": "^6.2.1",
"@storybook/addon-essentials": "^6.2.1",
"@storybook/addon-links": "^6.2.1",
"@storybook/node-logger": "^6.2.1",
"@storybook/preset-create-react-app": "^3.1.7",
"@storybook/react": "^6.2.1",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^1.7.0",
"gh-pages": "^3.1.0",
"postcss": "^8.1.0",
"postcss-loader": "^4.0.2",
"postcss-preset-env": "^6.7.0",
"precss": "^4.0.0",
"react-app-rewired": "^2.1.6"
}
}