-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.71 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
{
"name": "cs-web-proto",
"version": "0.1.0",
"private": true,
"dependencies": {
"@dls-controls/cs-web-lib": "^0.1.22",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.1.3",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.3",
"typescript": "^4.2.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls",
"lint": "eslint 'src/**/*.{ts,tsx}' --max-warnings=0",
"prettier-check": "prettier --check 'src/**/*.{ts,tsx}'",
"check-types": "tsc",
"all-checks": "npm run lint && npm run prettier-check && npm run check-types",
"prepare": "husky install"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.0",
"@testing-library/react": "^11.2.7",
"@types/jest": "^26.0.23",
"@types/node": "^15.3.0",
"@types/react": "^17.0.9",
"@types/react-dom": "^17.0.6",
"@types/react-redux": "^7.1.7",
"@types/react-router-dom": "^5.3.3",
"@types/react-test-renderer": "^17.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-unicorn": "^33.0.0",
"husky": "^6.0.0",
"prettier": "^2.2.1",
"react-test-renderer": "^17.0.0"
},
"prettier": {
"trailingComma": "none",
"arrowParens": "avoid"
}
}