forked from reactGo/reactGo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3.76 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
{
"name": "react-webpack-node",
"version": "3.1.0",
"description": "Your One-Stop solution for a full-stack app with ES6/ES2015 React.js featuring universal Redux, React Router, React Router Redux Hot reloading, CSS modules, Express 4.x, and multiple ORMs.",
"repository": "https://github.com/choonkending/react-webpack-node",
"main": "index.js",
"scripts": {
"sequelize": "node_modules/.bin/sequelize",
"lint": "eslint --ext .js,.jsx app server",
"lint:fix": "eslint --ext .js,.jsx app server --fix",
"clean": "rimraf public && rimraf compiled",
"start": "npm run build && cross-env NODE_ENV=production node compiled/server.js",
"dev": "cross-env NODE_ENV=development nodemon",
"build:dev": "cross-env NODE_ENV=development webpack --debug --colors --display-error-details --config ./webpack/webpack.config.js",
"build": "npm run clean && cross-env NODE_ENV=production webpack --colors --display-error-details --config ./webpack/webpack.config.js",
"test": "mocha ./app/tests/setup.js --compilers css:./app/tests/compilers/css ./app/**/*-test.js",
"test:watch": "mocha ./app/tests/setup.js --watch --compilers css:./app/tests/compilers/css ./app/**/*-test.js"
},
"author": "Choon Ken Ding",
"license": "MIT",
"devDependencies": {
"babel-register": "^6.24.0",
"enzyme": "^2.4.1",
"eslint": "^3.5.0",
"eslint-config-airbnb": "^10.0.0",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.2.0",
"eslint-plugin-react": "^6.2.0",
"expect": "^1.15.2",
"jsdom": "^9.12.0",
"mocha": "^3.2.0",
"nodemon": "^1.10.2",
"react-addons-test-utils": "^15.4.1",
"react-transform-catch-errors": "^1.0.2",
"redux-mock-store": "1.1.2",
"sinon": "^1.17.5"
},
"engines": {
"node": ">=6.x"
},
"dependencies": {
"autoprefixer": "^6.4.0",
"axios": "^0.14.0",
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.4.1",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-plugin-transform-react-inline-elements": "^6.22.0",
"babel-plugin-transform-react-remove-prop-types": "^0.2.12",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.22.0",
"bcrypt-nodejs": "0.0.3",
"bluebird": "^3.4.6",
"body-parser": "^1.15.0",
"classnames": "^2.2.3",
"compression": "^1.6.2",
"connect-mongo": "^1.3.2",
"connect-pg-simple": "^3.1.0",
"cross-env": "^2.0.1",
"css-loader": "^0.26.1",
"es6-promise": "^3.1.2",
"express": "^4.13.4",
"express-flash": "0.0.2",
"express-session": "^1.14.1",
"extract-text-webpack-plugin": "^2.0.0-rc.3",
"file-loader": "^0.9.0",
"helmet": "^2.1.2",
"json-loader": "^0.5.4",
"lodash": "^4.16.2",
"method-override": "^2.3.5",
"mongoose": "^4.5.10",
"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.9.0",
"postcss-import": "^9.0.0",
"postcss-loader": "^1.2.1",
"postcss-reporter": "^3.0.0",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-helmet": "^3.2.2",
"react-redux": "^4.4.5",
"react-router": "^2.7.0",
"react-router-redux": "^4.0.0",
"react-transform-hmr": "^1.0.4",
"redux": "^3.6.0",
"redux-logger": "^2.6.1",
"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",
"webpack": "^2.2.1",
"webpack-dev-middleware": "^1.9.0",
"webpack-hot-middleware": "^2.14.0"
}
}