-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
95 lines (95 loc) · 2.47 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
92
93
94
95
{
"homepage": "https://vslala.github.io/retro-board",
"name": "retro-board",
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.4.0",
"@testing-library/user-event": "^7.1.2",
"@types/jest": "^24.0.23",
"@types/node": "^12.12.17",
"@types/react": "^16.9.16",
"@types/react-csv": "^1.1.1",
"@types/react-dom": "^16.9.4",
"@types/react-redux": "^7.1.5",
"@types/react-router-dom": "^5.1.3",
"@types/redux": "^3.6.0",
"@types/redux-logger": "^3.0.7",
"@types/redux-promise": "^0.5.28",
"@types/sockjs-client": "^1.1.1",
"@types/stompjs": "^2.3.4",
"axios": "^0.19.2",
"bootstrap-social": "^5.1.1",
"cross-env": "^6.0.3",
"fetch-intercept": "^2.3.1",
"firebase": "^7.6.1",
"jquery": "^3.4.1",
"popper.js": "^1.16.0",
"react": "^16.12.0",
"react-color": "^2.18.1",
"react-csv": "^1.1.2",
"react-dom": "^16.12.0",
"react-markdown": "^4.3.1",
"react-redux": "^7.1.3",
"react-router-dom": "^5.1.2",
"react-scripts": "^3.4.0",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-logger": "^3.0.6",
"redux-promise": "^0.6.0",
"sockjs-client": "^1.4.0",
"stompjs": "^2.3.3",
"typed-react-markdown": "^0.1.0",
"typescript": "^3.7.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"coverage": "cross-env CI=false react-scripts test --coverage",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"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": {
"@testing-library/dom": "^6.11.0",
"@types/reactstrap": "^8.2.0",
"bootstrap": "^4.4.1",
"eslint-config-typescript": "^3.0.0",
"gh-pages": "^3.1.0",
"react-bootstrap": "^1.0.0-beta.16"
},
"jest": {
"collectCoverageFrom": [
"__tests__/**/*.{js,jsx,tsx}",
"!src/{serviceWorker.js,index.js}",
"!src/config/env-config.js"
],
"coverageThreshold": {
"global": {
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100
}
}
}
}