-
Notifications
You must be signed in to change notification settings - Fork 95
/
package.json
96 lines (96 loc) · 2.87 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
{
"name": "universal-redux-template",
"version": "0.0.0",
"description": "Universal Redux Template",
"scripts": {
"lint": "eslint app bin",
"start": "cross-env NODE_PATH=./app concurrently --kill-others \"node app/server\" \"gulp css:watch\"",
"test:prebuild": "./bin/test-prebuild",
"test:watch": "yarn run test:prebuild; yarn run test:babelwatch",
"test:babelwatch": "NODE_ENV=test babel app --out-dir .babel-test-build --source-maps --watch --ignore app/assets app/styles app/server --skip-initial-build",
"test": "./bin/test",
"test:ci": "yarn run test:prebuild; yarn test",
"webpack": "webpack",
"build": "rimraf dist/ && npm run webpack && gulp build",
"postinstall": "npm run build"
},
"engines": {
"node": "6.1.0",
"npm": "3.8.6"
},
"repository": {
"type": "git",
"url": "https://github.com/mz026/universal-redux-template"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mz026/universal-redux-template/issues"
},
"dependencies": {
"assets-webpack-plugin": "^3.2.0",
"babel-core": "^6.3.15",
"babel-loader": "^6.2.0",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-register": "^6.5.1",
"bluebird": "^2.10.0",
"compression": "^1.6.0",
"concurrently": "^2.0.0",
"cross-env": "^1.0.7",
"ejs": "^2.3.4",
"express": "^4.13.3",
"gulp": "^3.9.0",
"gulp-autoprefixer": "^3.1.0",
"gulp-load-plugins": "^1.2.0",
"gulp-rev": "^6.0.1",
"gulp-rev-all": "^0.8.24",
"gulp-rev-replace": "^0.4.3",
"gulp-sass": "^2.1.1",
"gulp-sourcemaps": "^1.6.0",
"history": "^1.17.0",
"humps": "^0.6.0",
"immutable": "^3.8.1",
"lodash": "^3.10.1",
"node-sass": "^3.4.2",
"normalizr": "^1.0.0",
"prop-types": "^15.5.10",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-helmet": "^5.1.3",
"react-redux": "^5.0.5",
"react-router": "^3.0.5",
"redux": "^3.0.0",
"redux-logger": "^1.0.9",
"redux-thunk": "^0.1.0",
"rewire": "^2.3.4",
"rimraf": "^2.5.2",
"run-sequence": "^1.2.2",
"superagent": "^1.4.0",
"webpack": "^2.2.0"
},
"devDependencies": {
"babel-eslint": "^7.2.1",
"babel-plugin-react-transform": "^2.0.0",
"babel-plugin-rewire": "^1.0.0-beta-5",
"chai": "^3.3.0",
"chai-as-promised": "^5.1.0",
"chokidar": "^1.6.1",
"dotenv": "^4.0.0",
"enzyme": "^2.3.0",
"eslint": "^3.18.0",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-react": "^6.0.0",
"jsdom": "^7.0.1",
"md5-file": "^3.1.1",
"mocha": "^2.4.5",
"nock": "^2.17.0",
"react-addons-test-utils": "^15.4.2",
"react-hot-loader": "^1.3.1",
"rewire-webpack": "^1.0.0",
"sinon": "^1.17.1",
"sinon-chai": "^2.8.0",
"webpack-dev-middleware": "^1.10.2",
"webpack-hot-middleware": "^2.18.0"
}
}