-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.82 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
{
"name": "starterkit",
"version": "1.0.0",
"author": "Will Howlett",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "npm test -- --watch",
"start": "webpack-dev-server --open --config config/webpack.dev.js --host 0.0.0.0",
"build": "webpack --config config/webpack.prod.js"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/config/test-setup.js",
"collectCoverage": true,
"collectCoverageFrom": [
"<rootDir>/src/**/*.js",
"!<rootDir>/src/index.js",
"!<rootDir>/src/components/App.js"
],
"moduleNameMapper": {
"Containers/(.*)": "<rootDir>/src/components/containers/$1",
"Presentational/(.*)": "<rootDir>/src/components/presentational/$1",
"Redux/(.*)": "<rootDir>/src/redux/$1"
}
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"classnames": "^2.2.5",
"clean-webpack-plugin": "^0.1.19",
"compression-webpack-plugin": "^1.1.11",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.11",
"debounce": "^1.1.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.1.0",
"node-sass": "^4.9.0",
"prop-types": "^15.6.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"resource-hints-webpack-plugin": "^0.0.2",
"sass-loader": "^7.0.1",
"sass-mq": "^4.0.2",
"script-ext-html-webpack-plugin": "^2.0.1",
"style-loader": "^0.21.0",
"webpack": "^4.8.3",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "^2.1.3",
"webpack-dev-server": "^3.1.4",
"webpack-merge": "^4.1.2"
}
}