-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.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
{
"name": "react-seed",
"version": "0.0.1",
"description": "React application showcasing a complete ecosystem of latest tools.",
"main": "index.js",
"author": "El Bandito",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-jest": "^20.0.3 ",
"babel-loader": "^7.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"enzyme": "^2.9.1 ",
"identity-obj-proxy": "^3.0.0",
"jest": "^20.0.4",
"jest-cli": "^20.0.4",
"nock": "^9.0.14",
"react-hot-loader": "^1.3.1",
"react-test-renderer": "^15.6.1",
"redux-mock-store": "^1.2.3",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1"
},
"dependencies": {
"css-loader": "^0.28.5",
"express": "^4.15.4",
"google-map-react": "^0.24.0",
"node-sass": "^4.5.3",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-image": "^1.0.1",
"react-redux": "^5.0.6",
"react-scripts": "1.0.11",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"sass-loader": "^6.0.6",
"semantic-ui-react": "^0.71.5",
"style-loader": "^0.18.2",
"whatwg-fetch": "^2.0.3"
},
"scripts": {
"build": "webpack --config webpack.config.js",
"dev": "webpack-dev-server --progress --colors",
"start": "npm run build && NODE_ENV=production node server.js",
"test": "jest --verbose"
},
"jest": {
"moduleNameMapper": {
"\\.(css|scss)$": "./src/__mocks__/styleMock.js"
}
}
}