-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
57 lines (57 loc) · 1.49 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
{
"name": "redux-example",
"version": "1.0.0",
"description": "Universal with React + Redux.",
"main": "index.js",
"scripts": {
"gulp": "babel-node ./node_modules/gulp/bin/gulp",
"express": "babel-node lib/express",
"dev": "npm run gulp dev",
"lint": "npm run gulp js:lint",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"react",
"redux"
],
"author": "Quangbuu Le <quangbuule@gmail.com>",
"license": "ISC",
"devDependencies": {
"babel": "^5.6.14",
"babel-core": "^5.6.15",
"babel-eslint": "^3.1.19",
"babel-loader": "^5.2.2",
"babel-runtime": "^5.6.15",
"browser-sync": "^2.7.12",
"del": "^1.2.0",
"eslint": "^0.24.0",
"eslint-plugin-react": "^2.5.2",
"gulp": "^3.9.0",
"gulp-eslint": "^0.14.0",
"gulp-load-plugins": "^1.0.0-rc.1",
"gulp-plumber": "^1.0.1",
"gulp-util": "^3.0.6",
"gulp-watch": "^4.2.4",
"node-libs-browser": "^0.5.2",
"node-notifier": "^4.2.3",
"nodemon": "^1.3.7",
"react": "^0.13.3",
"react-hot-loader": "^1.2.7",
"run-sequence": "^1.1.1",
"webpack": "^1.10.0",
"webpack-dev-server": "^1.10.0"
},
"dependencies": {
"bluebird": "^2.9.30",
"express": "^4.13.0",
"express-handlebars": "^2.0.1",
"handlebars": "^3.0.3",
"immutable": "^3.7.4",
"lodash": "^3.9.3",
"parse-link-header": "^0.2.0",
"qs": "^3.1.0",
"react-router": "^1.0.0-beta2",
"redux": "^0.12.0",
"superagent": "^1.2.0"
}
}