-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.35 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.35 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "Robots",
"version": "0.0.1",
"private": true,
"description": "Robots",
"main": "lib/main.js",
"scripts": {
"clean": "rm -rf buildLib && rm -rf testLib",
"compile": "NODE_ENV=production babel build -d buildLib",
"build:prod": "npm run compile && node buildLib/build --production",
"run:prod": "node dist/server.js",
"prod": "npm run build:prod && npm run run:prod",
"dev": "npm run compile && node --max-old-space-size=4096 buildLib/build --development"
},
"author": "Philipp Beau <PhilippB3au@gmail.com>",
"license": "ISC",
"dependencies": {
"autoprefixer": "^7.1.1",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-imports": "^1.2.0",
"babel-plugin-transform-react-jsx-source": "^6.22.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-runtime": "^6.23.0",
"body-parser": "^1.17.2",
"command-line-args": "^4.0.5",
"css-loader": "^0.28.2",
"express": "^4.15.3",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"handlebars": "^4.0.10",
"handlebars-loader": "^1.5.0",
"helmet": "^3.6.1",
"imports-loader": "^0.7.1",
"isomorphic-fetch": "^2.2.1",
"isomorphic-style-loader": "^2.0.0",
"node-sass": "^4.5.3",
"postcss-loader": "^2.0.5",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-redux": "^5.0.5",
"react-router": "^3.0.2",
"redux": "^3.6.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"request": "^2.81.0",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.5",
"serialize-javascript": "^1.3.0",
"style-loader": "^0.18.1",
"webpack": "^2.6.0",
"winston": "^2.3.1"
},
"devDependencies": {
"chai": "^3.5.0",
"flow-bin": "^0.46.0",
"mocha": "^3.0.0",
"nodemon": "^1.11.0",
"react-hot-loader": "^3.0.0-beta.6",
"webpack-dev-server": "^2.4.5"
},
"babel": {
"presets": [
"es2015",
"stage-2",
"react"
],
"plugins": [
"transform-flow-strip-types"
],
"env": {
"development": {
"plugins": [
"transform-react-jsx-source",
"react-hot-loader/babel"
]
}
}
}
}