-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
102 lines (102 loc) · 3.25 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "Haystack",
"description": "Blueberry JS stack",
"version": "0.0.1",
"private": true,
"engines": {
"node": ">=6.9",
"npm": ">=3.10"
},
"scripts": {
"start": "node src/server",
"build": "yarn webpack",
"heroku-postbuild": "yarn build",
"production:build": "NODE_ENV=production yarn webpack",
"production:server": "NODE_ENV=production yarn start",
"production": "yarn run production:build && yarn rollbar:sourcemaps:upload && yarn run production:server",
"eslint": "eslint ./src",
"jest": " jest",
"test": "jest",
"test:watch": "jest --watch",
"webpack": "rimraf ./dist && webpack --config ./webpack/webpack.config.js",
"rollbar:sourcemaps:upload": "node scripts/rollbarSourceMaps.js"
},
"authors": [
"honzabrecka",
"incik",
"lupuszr",
"ondrejbartas",
"TondaHack"
],
"devDependencies": {
"babel-eslint": "^7.1.1",
"chokidar": "^1.6.1",
"enzyme": "^2.7.0",
"enzyme-to-json": "^1.4.5",
"eslint": "^3.13.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"jest": "^18.1.0",
"react-addons-test-utils": "^15.4.2",
"webpack-bundle-analyzer": "^2.8.3"
},
"dependencies": {
"babel-loader": "7.1.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-dynamic-import-node": "^1.0.2",
"babel-plugin-dynamic-import-webpack": "^1.0.1",
"babel-plugin-transform-class-properties": "^6.19.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es2015-classes": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-plugin-transform-react-inline-elements": "^6.22.0",
"babel-plugin-transform-react-remove-prop-types": "^0.3.2",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-es2015-node6": "^0.4.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-1": "^6.16.0",
"babel-register": "6.24.1",
"chalk": "^1.1.3",
"compression": "^1.6.2",
"cookie-parser": "^1.4.3",
"dotenv": "^4.0.0",
"express": "^4.14.0",
"file-loader": "^0.10.1",
"helmet": "^3.4.0",
"html-webpack-plugin": "^2.28.0",
"morgan": "^1.7.0",
"pretty-error": "^2.0.2",
"react": "^15.4.2",
"react-dev-utils": "^0.4.2",
"react-dom": "^15.4.2",
"react-helmet": "^4.0.0",
"rimraf": "^2.6.1",
"rollbar": "^0.6.5",
"source-map-support": "^0.4.9",
"spdy": "^3.4.4",
"url-loader": "^0.5.8",
"webpack": "3.3.0",
"webpack-dev-middleware": "1.11.0",
"webpack-hot-middleware": "2.18.2",
"webpack-isomorphic-tools": "3.0.3",
"webpack-manifest-plugin": "1.1.2",
"webpack-md5-hash": "0.0.5"
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/src/utils/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/src/utils/__mocks__/styleMock.js"
},
"collectCoverageFrom": [
"src/**/*.js"
]
}
}