-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.26 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.26 KB
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
68
{
"name": "repack",
"repository": "https://github.com/cottonwoodcoding/repack",
"version": "0.0.1",
"license": "MIT",
"engine": "node >= 0.4.1",
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/client/__tests__/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/client/__tests__/__mocks__/styleMock.js"
},
"testRegex": "test.js$"
},
"scripts": {
"dev_server": "./node_modules/.bin/webpack-dev-server --config config/webpack.config.js",
"build": "webpack --config=config/webpack.config.js -p",
"heroku-setup": "heroku buildpacks:clear && heroku buildpacks:set heroku/nodejs && heroku buildpacks:add heroku/ruby --index 2",
"webpack:deploy-heroku": "webpack --config=config/webpack.config.heroku.js -p",
"heroku-postbuild": "npm run webpack:deploy-heroku",
"test": "jest",
"test_watch": "jest --watch"
},
"dependencies": {
"autoprefixer": "^6.7.6",
"babel-core": "^6.9.1",
"babel-loader": "^6.2.4",
"babel-preset-env": "^1.2.1",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.22.0",
"css-loader": "^0.26.1",
"extract-text-webpack-plugin": "v2.0.0",
"file-loader": "^0.9.0",
"image-webpack-loader": "3.0.0",
"j-toker": "^0.0.10-beta3",
"json-loader": "^0.5.4",
"node-sass": "^4.3.0",
"pngquant": "^1.2.0",
"postcss-loader": "^1.3.3",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-materialize": "^0.18.1",
"react-redux": "^4.4.5",
"react-router": "^2.4.1",
"react-router-redux": "^4.0.5",
"redux": "^3.5.2",
"redux-auth-wrapper": "^1.0.0",
"redux-thunk": "^2.1.0",
"sass-loader": "^4.1.1",
"stats-webpack-plugin": "^0.5.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^2.2.1",
"webpack-dev-middleware": "1.7.0"
},
"devDependencies": {
"babel-jest": "^18.0.0",
"enzyme": "^2.7.0",
"jest": "^18.1.0",
"react-addons-test-utils": "^15.4.1",
"react-shallow-renderer": "^1.1.4",
"react-test-renderer": "^15.4.1",
"react-test-utils": "^0.0.1",
"redux-mock-store": "^1.2.1",
"sinon": "^1.17.7",
"webpack-dashboard": "^0.2.0",
"webpack-dev-server": "^1.9.0"
}
}