-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 2.07 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
{
"name": "express-react-es6",
"version": "0.1.0",
"description": "Isomorphic application Express+React",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/paveleremin/express-react-es6.git"
},
"scripts": {
"test": "echo 'Error: no test specified' && exit 1",
"build": "./node_modules/.bin/webpack --stats --config ./webpack/config.build.js",
"dev": "NODE_ENV=development DEBUG=app ./node_modules/.bin/nodemon index --harmony",
"prod": "NODE_ENV=production DEBUG=app node index --harmony",
"start": "NODE_ENV=production node index --harmony",
"postinstall": "npm run build",
"lint": "./node_modules/.bin/eslint index.js app webpack server"
},
"engines": {
"node": "^4.1.2",
"npm": "^3.3.6"
},
"author": "Pavel Eremin",
"license": "ISC",
"dependencies": {
"autoprefixer-loader": "^3.1.0",
"babel-core": "^5.8.25",
"babel-eslint": "^4.1.3",
"babel-loader": "^5.3.2",
"bluebird": "^2.10.2",
"bootstrap": "~3.3.5",
"clean-webpack-plugin": "^0.1.3",
"compression": "^1.5.2",
"cookie": "^0.2.2",
"cookie-parser": "^1.4.0",
"css-loader": "^0.19.0",
"debug": "^2.2.0",
"es6-promise": "^3.0.2",
"eslint": "^1.6.0",
"eslint-plugin-react": "^3.5.1",
"express": "^4.13.3",
"extract-text-webpack-plugin": "^0.8.2",
"file-loader": "^0.8.4",
"font-awesome": "~4.4.0",
"history": "^1.12.5",
"less": "^2.5.1",
"less-loader": "^2.2.1",
"lodash": "^3.10.1",
"moment": "^2.10.6",
"react": "^0.14.0",
"react-dom": "^0.14.0",
"react-router": "^1.0.0-rc3",
"reflux": "^0.2.13",
"serialize-javascript": "^1.1.2",
"serve-favicon": "^2.3.0",
"serve-static": "^1.10.0",
"strip-loader": "^0.1.0",
"style-loader": "^0.12.4",
"superagent": "~1.4.0",
"superagent-jsonp": "0.0.5",
"webpack": "^1.12.2",
"webpack-error-notification": "^0.1.4",
"webpack-stats-plugin": "^0.1.0"
},
"devDependencies": {
"webpack-dev-server": "^1.12.0",
"react-hot-loader": "^1.3.0",
"nodemon": "^1.7.1"
}
}