-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
67 lines (67 loc) · 1.86 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
{
"name": "tic-tac-toe",
"version": "2.0.0",
"private": true,
"homepage": "https://fernandosouza.github.io/react-tic-tac-toe/",
"author": "Fernando Souza <nandosouzafilho@gmail.com> (http://github.com/fernandosouza/)",
"keywords": [
"react",
"game",
"tic-tac-toe"
],
"bugs": "https://github.com/fernandosouza/react-tic-tac-toe/issues",
"dependencies": {
"@testing-library/react": "10.0.4",
"@types/enzyme": "3.10.5",
"@types/enzyme-adapter-react-16": "1.0.6",
"@types/jest": "25.2.1",
"@types/react-test-renderer": "16.9.2",
"@types/styled-components": "5.1.0",
"@types/testing-library__react": "10.0.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-router-dom": "5.0.0",
"underscore": "1.10.2"
},
"devDependencies": {
"@types/react-router-dom": "5.1.5",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.12.1",
"jest-styled-components": "7.0.2",
"node-sass": "4.14.1",
"react-router-test-context": "0.1.0",
"react-scripts": "3.4.1",
"react-test-renderer": "16.13.1",
"styled-components": "5.1.1",
"typescript": "3.9.7"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"coverage": "npm test -- --coverage --watchAll=false",
"build-css": "node-sass src/ -o src/",
"watch-css": "npm run build-css && node-sass src/ -o src/ --watch --recursive"
},
"jest": {
"collectCoverageFrom": [
"**/**/*.{js,jsx,ts,tsx}",
"!**/node_modules/**",
"!**/vendor/**",
"!**/testHelpers/**"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}