forked from capcodigital/tech-radar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.09 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
{
"name": "capco-radar",
"version": "0.1.0",
"private": true,
"dependencies": {
"@cucumber/cucumber": "^7.3.2",
"@emotion/react": "^11.8.1",
"@emotion/style": "^0.8.0",
"@emotion/styled": "^11.8.1",
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@mui/icons-material": "^5.6.2",
"@mui/lab": "^5.0.0-alpha.74",
"@mui/material": "^5.7.0",
"@mui/styled-engine-sc": "^5.6.1",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^12.8.1",
"@types/d3": "^6.3.0",
"@types/jest": "^26.0.20",
"@types/node": "^12.20.51",
"@types/react": "^17.0.45",
"@types/react-dom": "^17.0.1",
"@types/styled-components": "^5.1.7",
"antd": "^4.23.5",
"axios": "^0.27.2",
"bootstrap": "^4.6.0",
"dotenv": "^16.0.1",
"playwright": "^1.22.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"styled-components": "^5.2.1",
"typescript": "^4.6.4",
"web-vitals": "^1.1.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"cucumberTest": "./node_modules/.bin/cucumber-js --publish --exit",
"cypress": "cypress open",
"eject": "react-scripts eject"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,json}": "prettier --write"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"plugin:react-hooks/recommended"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/chroma-js": "^2.1.3",
"@types/react-router-dom": "^5.1.7",
"cypress": "^7.5.0",
"d3": "^6.5.0",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^4.2.3",
"lint-staged": "^11.0.0",
"prettier": "^2.3.1",
"react-scripts": "^5.0.0"
}
}