-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.37 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
{
"name": "react-redux-fullstack-starter",
"version": "0.1.0",
"description": "React Redux Fullstack Starter",
"main": "index.js",
"scripts": {
"start": "NODE_PATH=$NODE_PATH:./app babel-node .",
"boot": "NODE_PATH=$NODE_PATH:./_lib node ./bootstrap.js",
"dev": "npm run start & webpack-dev-server --progress --colors",
"postinstall": "NODE_ENV=production webpack --progress --colors --config webpack.prod.config.js",
"test": "./node_modules/mocha/bin/mocha --require ./app/tests/test_starter.js --require ./app/tests/test_helper.js ./app --recursive",
"test:watch": "npm run test -- --watch",
"clear": "rm -rf ./_public ./_lib && mkdir ./_public && mkdir ./_lib",
"build": "NODE_ENV=production webpack --watch --progress --colors --config webpack.config.js",
"build_prd": "NODE_ENV=production webpack --progress --colors --config webpack.prod.config.js",
"go": "npm run clear & npm run build & npm run dev",
"online": "npm run clear & npm run build_prd & npm run start"
},
"repository": {
"type": "git",
"url": "https://github.com/kreding/Isomorphic"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.14.2",
"classnames": "^2.2.3",
"express": "^4.13.3",
"file-loader": "^0.8.5",
"history": "^1.17.0",
"img-loader": "^1.2.2",
"immutable": "^3.7.6",
"jquery": "^2.2.0",
"lodash": "^4.13.1",
"mongoose": "^4.4.20",
"node-sass": "^3.4.2",
"pg": "^4.5.6",
"react": "^0.14.6",
"react-dom": "^0.14.6",
"react-redux": "^4.0.6",
"react-router": "^1.0.3",
"redux": "^3.0.5",
"url-loader": "^0.5.7",
"webpack": "^1.12.10",
"window-or-global": "^1.0.1"
},
"engines": {
"node": "0.12.0"
},
"devDependencies": {
"autoprefixer-loader": "^3.2.0",
"babel": "^6.5.2",
"babel-core": "^6.4.0",
"babel-loader": "^6.2.1",
"babel-cli": "^6.4.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-2": "^6.5.0",
"chai": "^3.4.1",
"chai-immutable": "^1.5.3",
"css-loader": "^0.23.1",
"extract-text-webpack-plugin": "^1.0.1",
"html-webpack-plugin": "^2.16.1",
"mocha": "^2.3.4",
"react-hot-loader": "^1.3.0",
"resolve-url-loader": "^1.4.3",
"sass-loader": "^3.2.0",
"style-loader": "^0.13.1",
"webpack-dev-server": "^1.14.0"
}
}