-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.58 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
{
"dependencies": {
"chai": "*",
"chai-enzyme": "^1.0.0-beta.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-inlinesvg": "^0.8.1",
"react-redux": "^5.0.7",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-router-redux": "^4.0.8",
"redux": "^4.0.0",
"redux-api-middleware": "^2.3.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"sinon": "^6.1.5",
"why-did-you-update": "^0.1.1"
},
"homepage": "http://hideous-stage.surge.sh",
"devDependencies": {
"babel-jest": "^23.4.2",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-latest": "^6.24.1",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.5.0",
"enzyme-adapter-react-16": "^1.3.1",
"enzyme-to-json": "^3.3.4",
"gh-pages": "^1.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.5.0",
"mocha": "^5.2.0",
"prop-types": "^15.6.2",
"react-addons-test-utils": "^15.6.2",
"react-scripts": "1.1.4",
"react-test-renderer": "^16.4.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "surge --domain hideous-stage.surge.sh"
},
"jest": {
"setupFiles": [
"./src/jest-setup.js"
],
"snapshotSerializers": [
"<rootDir>/node_modules/enzyme-to-json/serializer"
],
"moduleNameMapper": {
"^.+\\.(css|scss)$": "identity-obj-proxy"
}
}
}