This repository has been archived by the owner on Jul 4, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
124 lines (124 loc) · 3.79 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "redux-universal-boilerplate",
"description": "Boilerplate of an isomorphic (universal) react application",
"author": "Sergey Ivanov <xufocoder@gmail.com>",
"license": "MIT",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "https://github.com/ufocoder/redux-universal-boilerplate"
},
"homepage": "https://github.com/ufocoder/redux-universal-boilerplate",
"keywords": [
"react",
"react-router",
"react-redux",
"redux",
"universal",
"isomorphic",
"webpack",
"express",
"starter-kit",
"boilerplate",
"babel"
],
"main": "bin/server.js",
"scripts": {
"clean": "node ./bin/clean.js",
"start": "nodemon ./bin/server.js",
"prebuild": "npm-run-all clean lint test",
"build": "npm-run-all --parallel build:*",
"build:server": "webpack --config webpack/server/config.js",
"build:client": "webpack --config webpack/client/config.js",
"deploy": "cross-env NODE_ENV=production npm-run-all build start",
"prewatch": "npm run clean",
"watch": "npm-run-all --parallel watch:*",
"watch:wait": "just-wait --pattern \"dist/*.js\" && npm run start",
"watch:server": "webpack --config webpack/server/watch.js",
"watch:client": "webpack-dev-server --config webpack/client/watch.js",
"test": "karma start ./tests/karma.config.js --single-run",
"test:watch": "karma start ./tests/karma.config.js no-single-run",
"test:e2e": "mkdir -p .screenshots && mocha --timeout=20000 ./tests/e2e",
"lint": "standard ./src/**/*.js ./bin/**/*.js ./webpack/**/*.js ./tests/**/*.js",
"prettier": "prettier ./src/**/*.js ./bin/**/*.js ./webpack/**/*.js ./tests/**/*.js"
},
"dependencies": {
"axios": "^0.16.1",
"babel": "^6.23.0",
"babel-core": "^6.23.1",
"babel-loader": "^7.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.22.0",
"body-parser": "^1.17.1",
"css-loader": "^0.28.1",
"express": "^4.15.2",
"extract-text-webpack-plugin": "^3.0.1",
"file-loader": "^1.1.5",
"json-loader": "^0.5.4",
"locale": "^0.1.0",
"lodash": "^4.17.4",
"node-noop": "^1.0.0",
"node-sass": "^4.5.0",
"prop-types": "^15.5.8",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-helmet": "^5.0.3",
"react-redux": "^5.0.3",
"react-router": "^3.0.2",
"react-router-redux": "^4.0.8",
"redial": "^0.5.0",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"sass-loader": "^6.0.3",
"semantic-ui-css": "^2.2.9",
"serialize-javascript": "^1.3.0",
"style-loader": "^0.19.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"url-loader": "^0.6.2",
"webpack-isomorphic-tools": "^3.0.1"
},
"devDependencies": {
"babel-eslint": "^8.0.1",
"chai": "^4.1.2",
"cross-env": "^5.0.5",
"del": "^3.0.0",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.1",
"es6-map": "^0.1.5",
"es6-set": "^0.1.5",
"just-wait": "^1.0.11",
"karma": "^1.5.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-sinon": "^1.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.2",
"mocha": "^4.0.1",
"nodemon": "^1.11.0",
"npm-run-all": "^4.0.2",
"prettier": "^1.7.4",
"puppeteer": "^0.11.0",
"react-hot-loader": "^3.0.0-beta.6",
"react-test-renderer": "^16.0.0",
"sinon": "^4.0.1",
"standard": "^10.0.3",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.4.1",
"webpack-node-externals": "^1.4.3"
},
"engines": {
"node": ">=6.9.0"
},
"standard": {
"env": [
"mocha"
]
}
}