-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.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
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
{
"name": "star-wars",
"version": "1.0.10",
"private": true,
"dependencies": {
"node-sass": "^4.14.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^7.0.3",
"react-router-dom": "^5.1.2",
"react-scripts": "3.4.0",
"redux": "^4.0.5",
"redux-saga": "^1.0.2",
"styled-components": "^5.0.1",
"typesafe-actions": "^5.1.0"
},
"scripts": {
"lint": "tsc --noEmit && eslint src/**/*.{js,ts}{,x}",
"format": "prettier --write src/**/*.{js,ts}{,x}",
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test --silent",
"test:coverage": "yarn test --coverage --watchAll=false",
"test:coveralls": "yarn coveralls < coverage/lcov.info",
"eject": "react-scripts eject",
"cy:start": "yarn start & yarn wait-on http://localhost:3000/",
"cy:test": "yarn cypress run --record"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/eslint-parser": "^7.11.5",
"@babel/eslint-plugin": "^7.11.5",
"@commitlint/cli": "^9.1.2",
"@commitlint/core": "^9.1.2",
"@testing-library/jest-dom": "^5.7.0",
"@testing-library/react": "^10.0.2",
"@types/jest": "^25.1.4",
"@types/node": "^12.12.31",
"@types/react": "^16.9.26",
"@types/react-dom": "^16.9.5",
"@types/react-redux": "^7.1.7",
"@types/react-router-dom": "^5.1.3",
"@types/react-test-renderer": "^16.9.2",
"@types/redux-mock-store": "^1.0.2",
"@types/redux-saga": "^0.10.5",
"@types/styled-components": "^5.0.1",
"babel-plugin-root-import": "^6.5.0",
"commitizen": "^4.2.1",
"commitlint-config-gitmoji": "^1.0.1",
"coveralls": "^3.1.0",
"customize-cra": "^1.0.0",
"cypress": "^4.5.0",
"cz-emoji": "^1.2.2",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-babel-plugin-root-import": "^1.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "7.20.0",
"eslint-plugin-react-hooks": "4.0.0",
"husky": "^4.2.5",
"jest-styled-components": "^7.0.2",
"lint-staged": "^10.3.0",
"prettier": "^2.1.1",
"react-app-rewired": "^2.1.6",
"react-test-renderer": "^16.13.1",
"redux-mock-store": "^1.5.4",
"redux-saga-test-plan": "^4.0.0-rc.3",
"typescript": "^3.4.5",
"wait-on": "^5.2.0"
}
}