-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.77 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
{
"name": "react-universal-starter",
"version": "0.1.0",
"description": "Minimalist universal react project starter",
"main": "lib/bin/www.js",
"repository": {
"type": "git",
"url": "https://github.com/anyong/react-universal-starter.git"
},
"scripts": {
"clean": "rm -rf lib",
"dev": "concurrent --kill-others \"babel -w src -d lib -s\" \"gulp hot \"",
"build": "better-npm-run build:prod",
"start": "better-npm-run start:prod",
"test": "echo \"Error: no test specified\" && exit 1"
},
"betterScripts": {
"build:prod": {
"command": "babel src -d lib && gulp build",
"env": {
"NODE_ENV": "production"
}
},
"start:prod": {
"command": "node ./lib/bin/www.js",
"env": {
"NODE_ENV": "production"
}
}
},
"author": {
"name": "Edward Greve",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"babel-cli": "^6.6.5",
"babel-eslint": "^6.0.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"better-npm-run": "0.0.8",
"express": "^4.13.4",
"gulp": "^3.9.1",
"gulp-util": "^3.0.7",
"knex": "^0.10.0",
"objection": "^0.4.0",
"pg": "^4.5.2",
"react": "^0.14.8",
"react-dom": "^0.14.8",
"react-redux": "^4.4.1",
"react-router": "^2.0.1",
"react-router-redux": "^4.0.1",
"redux": "^3.3.1",
"redux-async-connect": "^1.0.0-rc4",
"redux-promise": "^0.5.3",
"redux-thunk": "^2.0.1",
"serialize-javascript": "^1.2.0",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
},
"devDependencies": {
"concurrently": "^2.0.0",
"eslint": "^2.7.0",
"eslint-plugin-react": "^4.2.3"
}
}