-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.2 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
{
"name": "tetris-game",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jest-environment-jsdom-sixteen --verbose --coverage --watchAll=false",
"test:CI": "CI=true npm test",
"lint": "eslint . --ext js",
"lint:fix": "npm run lint -- --fix",
"postinstall": "husky install"
},
"dependencies": {
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"node-sass": "^5.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-scripts": "^4.0.3"
},
"devDependencies": {
"@testing-library/react-hooks": "^5.0.3",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^5.1.1",
"jest-environment-jsdom-sixteen": "^1.0.3",
"prettier": "^2.2.1",
"typescript": "^4.1.5"
},
"jest": {
"coverageReporters": [
"html"
],
"coverageThreshold": {
"global": {
"statements": 55,
"branches": 34,
"lines": 54,
"functions": 52
}
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}