-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.13 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
{
"name": "react",
"version": "1.0.0",
"private": true,
"dependencies": {
"axios": "^0.16.1",
"flux": "^3.1.2",
"http-server": "^0.10.0",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1"
},
"devDependencies": {
"babel-jest": "^20.0.3",
"babel-plugin-jest-hoist": "^20.0.3",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"enzyme": "^2.8.2",
"jest": "^20.0.4",
"react-scripts": "0.9.5",
"react-test-renderer": "^15.5.4",
"regenerator-runtime": "^0.10.5"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"build-server": "react-scripts build && http-server ./build",
"test": "jest",
"eject": "react-scripts eject"
},
"jest": {
"collectCoverage": true,
"testPathIgnorePatterns": [
"<rootDir>[/\\\\](docs|node_modules)[/\\\\]"
],
"moduleNameMapper": {
"^.+\\.(css|scss|less)$": "<rootDir>/tests/styleMock.js"
},
"testEnvironment": "node",
"testURL": "http://localhost:3000"
}
}