-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.57 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
{
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"tslint": "tslint --project tsconfig.json --config tslint.json --exclude 'src/serviceWorker.ts'",
"prettier": "prettier --list-different '**/*.css' '**/*.json' '**/*.ts' '**/*.tsx'",
"serve": "serve --listen 80 --single build",
"now-build": "react-scripts build && mv build dist"
},
"dependencies": {
"@material-ui/core": "^3.9.2",
"@material-ui/icons": "^3.0.2",
"@material-ui/lab": "^3.0.0-alpha.30",
"@types/color-convert": "^1.9.0",
"@types/jest": "^24.0.6",
"@types/node": "^11.9.4",
"@types/react": "^16.8.4",
"@types/react-dom": "^16.8.2",
"@types/react-redux": "^7.0.1",
"@types/redux-logger": "^3.0.7",
"axios": "^0.18.0",
"color-convert": "^2.0.0",
"fast-deep-equal": "^2.0.1",
"prettier": "^1.16.4",
"react": "^16.8.2",
"react-dom": "^16.8.2",
"react-redux": "^6.0.1",
"react-scripts": "^2.1.5",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-saga": "^1.0.1",
"serve": "^10.1.2",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"tslint-react": "^3.6.0",
"typescript": "^3.3.3",
"typescript-fsa": "^3.0.0-beta-2",
"typescript-fsa-reducers": "^1.2.0"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"eslintConfig": {
"extends": "react-app"
},
"prettier": {
"semi": false,
"singleQuote": true
}
}