-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
60 lines (60 loc) · 1.6 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
{
"scripts": {
"start": "heroku local -f Procfile.local",
"build": "npm run build-assets && npm run build-lib",
"build-assets": "NODE_ENV=production webpack -p --json > stats.json",
"build-lib": "rimraf lib && babel ./modules -d lib --copy-files",
"heroku-postbuild": "npm run build",
"lint": "eslint modules",
"test": "npm run lint"
},
"dependencies": {
"autoprefixer": "^6.3.6",
"babel-cli": "^6.8.0",
"babel-core": "^6.9.1",
"babel-loader": "^6.2.4",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"chunk-manifest-webpack-plugin": "^0.1.0",
"cookie-parser": "^1.4.2",
"cookie-session": "^1.2.0",
"css-loader": "^0.25.0",
"errorhandler": "^1.4.3",
"express": "^4.13.4",
"extract-text-webpack-plugin": "^1.0.1",
"invariant": "^2.2.1",
"morgan": "^1.7.0",
"postcss-loader": "^1.1.0",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"rimraf": "^2.5.2",
"style-loader": "^0.13.1",
"throng": "^4.0.0",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.14.1",
"webpack-md5-hash": "0.0.5"
},
"devDependencies": {
"babel-eslint": "^7.1.0",
"babel-register": "^6.8.0",
"eslint": "^3.0.1",
"eslint-import-resolver-webpack": "^0.5.1",
"eslint-plugin-import": "^2.0.0",
"eslint-plugin-react": "^6.0.0"
},
"engines": {
"node": "6"
},
"babel": {
"presets": [
"es2015",
"react",
"stage-1"
],
"plugins": [
"transform-object-assign"
]
}
}