This repository has been archived by the owner on Jul 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.6 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
{
"name": "application-name",
"version": "0.0.1",
"private": true,
"main": "./src/ui/main.js",
"scripts": {
"postinstall": "mkdir -p public/{js,css}; bower install",
"watch": "gulp watch",
"build": "gulp",
"test": "eslint index.js app.js src test && gulp && mocha"
},
"dependencies": {
"body-parser": "^1.9.3",
"bower": "^1.3.12",
"browserify": "^9.0.3",
"compression": "^1.4.1",
"cookie-parser": "^1.3.3",
"envify": "^3.2.0",
"eslint": "^0.15.0",
"express": "^4.10.4",
"express-session": "^1.10.3",
"flux": "^2.0.1",
"gulp-if": "^1.2.5",
"gulp-streamify": "0.0.5",
"gulp-uglify": "^1.1.0",
"jade": "^1.9.1",
"minimist": "^1.1.0",
"mongoskin": "^1.4.12",
"morgan": "^1.5.1",
"node-jsx": "^0.12.4",
"object-assign": "^2.0.0",
"q": "^1.1.2",
"q-io": "^1.11.6",
"react": "^0.12.2",
"react-keyboardshortcut": "piglovesyou/react-keyboardshortcut#googglobal",
"react-router": "^0.11.6",
"reactify": "^1.0.0",
"static-favicon": "^2.0.0-alpha",
"tidal-wave": "arielnetworks/tidal-wave",
"underscore": "^1.7.0",
"vinyl-source-stream": "^1.0.0",
"watchify": "substack/watchify",
"xhr": "^2.0.1"
},
"devDependencies": {
"coffee-script": "^1.9.0",
"gulp": "^3.8.10",
"gulp-autoprefixer": "^2.1.0",
"gulp-bower": "0.0.10",
"gulp-notify": "^2.2.0",
"gulp-ruby-sass": "^1.0.0-alpha.2",
"mocha": "^2.0.1",
"supertest": "^0.15.0"
},
"browserify": {
"transform": [
[
"reactify",
{
"es6": true
}
]
]
}
}