forked from reactGo/reactGo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 4.45 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 4.45 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
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
125
126
127
128
129
130
{
"name": "react-webpack-node",
"version": "1.7.16",
"description": "A simple Node.js app using Express 4 with Webpack, React, alt, ImmutableJS",
"repository": "https://github.com/choonkending/react-webpack-node",
"main": "index.js",
"scripts": {
"babel": "babel --presets es2015,stage-0 --ignore node_modules,public",
"babel-node": "babel-node --presets es2015,stage-0 --ignore node_modules,public",
"sequelize": "node_modules/.bin/sequelize",
"lint": "eslint app server",
"clean": "rimraf public && rimraf compiled",
"start": "cross-env NODE_ENV=production node compiled/index.js",
"dev": "cross-env NODE_ENV=development nodemon",
"build:dev": "cross-env NODE_ENV=development webpack --colors --config ./webpack/webpack.config.dev-server.js",
"build:prod": "cross-env NODE_ENV=production webpack --colors --config ./webpack/webpack.config.prod.js",
"build:node": "cross-env NODE_ENV=production npm run babel -- ./server -d ./compiled",
"build": "npm run clean && npm run build:prod && npm run build:node",
"test": "cross-env NODE_ENV=test karma start",
"test:watch": "cross-env NODE_ENV=test npm test -- --watch --no-single-run",
"postinstall": "npm run build"
},
"author": "Choon Ken Ding",
"license": "MIT",
"devDependencies": {
"enzyme": "^2.4.1",
"eslint": "^3.3.1",
"eslint-config-airbnb": "^10.0.0",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.0.1",
"eslint-plugin-react": "^6.1.2",
"expect": "^1.15.2",
"karma": "^1.1.1",
"karma-jsdom-launcher": "^4.0.0",
"karma-mocha": "^1.0.1",
"karma-mocha-reporter": "^2.0.0",
"karma-sinon": "^1.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"mocha": "^3.0.1",
"nock": "^8.0.0",
"nodemon": "^1.10.2",
"null-loader": "^0.1.1",
"react-addons-test-utils": "^15.3.1",
"react-transform-catch-errors": "^1.0.2",
"redux-mock-store": "1.1.2",
"sinon": "^1.17.4",
"stylelint": "^7.1.0",
"stylelint-webpack-plugin": "^0.3.1"
},
"engines": {
"node": "5.x"
},
"dependencies": {
"autoprefixer": "^6.4.0",
"axios": "^0.13.1",
"babel-cli": "^6.14.0",
"babel-core": "^6.13.2",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.5",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-react-constant-elements": "^6.5.0",
"babel-plugin-transform-react-inline-elements": "^6.6.5",
"babel-plugin-transform-react-remove-prop-types": "^0.2.3",
"babel-preset-es2015": "^6.13.1",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"bcrypt-nodejs": "0.0.3",
"bluebird": "^3.4.6",
"body-parser": "^1.15.0",
"chai": "^3.5.0",
"classnames": "^2.2.3",
"compression": "^1.6.2",
"connect-mongo": "^1.1.0",
"connect-pg-simple": "^3.1.0",
"cross-env": "^2.0.0",
"css-loader": "^0.25.0",
"deep-equal": "^1.0.1",
"es6-promise": "^3.1.2",
"express": "^4.13.4",
"express-flash": "0.0.2",
"express-session": "^1.13.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"helmet": "^2.1.2",
"immutable": "^3.7.6",
"inline-environment-variables-webpack-plugin": "1.1.0",
"invariant": "^2.2.1",
"isomorphic-fetch": "^2.2.1",
"json-loader": "^0.5.4",
"kerberos": "0.0.21",
"lodash": "^4.6.1",
"method-override": "^2.3.5",
"mongoose": "^4.5.8",
"node-libs-browser": "^1.0.0",
"passport": "^0.3.2",
"passport-google-oauth": "^1.0.0",
"passport-local": "^1.0.0",
"pg": "^6.0.3",
"pg-hstore": "^2.3.2",
"postcss-cssnext": "^2.7.0",
"postcss-import": "^8.0.2",
"postcss-loader": "^0.10.1",
"postcss-reporter": "^1.4.1",
"postcss-simple-vars": "^3.0.0",
"react": "^15.3.1",
"react-dom": "^15.3.1",
"react-helmet": "^3.1.0",
"react-redux": "^4.4.1",
"react-router": "^2.7.0",
"react-router-redux": "^4.0.0",
"react-transform-hmr": "^1.0.4",
"redux": "^3.3.1",
"redux-logger": "^2.6.1",
"redux-mock-store": "^1.1.4",
"redux-thunk": "^2.0.1",
"rimraf": "^2.5.4",
"sequelize": "^3.24.1",
"sequelize-cli": "^2.3.1",
"spark-md5": "^2.0.2",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"warning": "^3.0.0",
"webpack": "^1.13.2",
"webpack-dev-middleware": "^1.5.1",
"webpack-hot-middleware": "^2.12.1"
}
}