forked from FREEZX/nuke.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.9 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
{
"name": "nukejs",
"version": "0.0.1",
"description": "High-speed realtime framework",
"main": "public/js/app.msx",
"dependencies": {
"async": "^0.9.0",
"bower": "^1.4.0",
"connect-redis": "^2.2.0",
"consolidate": "^0.12.0",
"crossroads": "git://github.com/FREEZX/crossroads.js",
"express": "^4.12.0",
"forever": "^0.14.1",
"jwt-simple": "^0.2.0",
"lodash": "^3.3.0",
"mongoose": "^4.0.0",
"mongoose-cachebox": "^1.2.0",
"passport": "^0.2.1",
"passport-jwt-strategy": "^1.1.3",
"passport-local": "^1.0.0",
"passport-strategy": "^1.0.0",
"pause": "0.0.1",
"primus": "^3.0.1",
"primus-redis-rooms-withauth": "git://github.com/A8tech/primus-redis-rooms",
"q": "^1.2.0",
"redis": "^0.12.1",
"swig": "^1.4.2",
"url": "^0.10.2",
"ws": "^0.7.1",
"uglify-js": "~2.4.15",
"browserify": "^9.0.3",
"clean-css": "^3.1.1",
"css": "^2.2.0",
"mkdirp": "^0.5.0",
"glob": "^5.0.1",
"domready": "^1.0.7",
"envify": "^3.0.0",
"es6-promise": "^2.0.1",
"mithril": "^0.1.30",
"mithril.elements": "^0.1.3",
"mithrilify": "0.0.3"
},
"devDependencies": {
"nodemon": "^1.3.7",
"watchify": "^2.1.1",
"mocha": "^2.2.1",
"should": "^5.2.0"
},
"scripts": {
"postinstall": "node_modules/.bin/bower install --allow-root --config.interactive=false && npm run build",
"watch": "node_modules/.bin/watchify public/js/app.msx -o public/js/bundle.js --extension=.msx -v -d .",
"start": "node_modules/.bin/forever server.js",
"start-dev": "npm run watch & node_modules/.bin/nodemon server.js",
"build": "NODE_ENV=production node_modules/.bin/browserify -o public/js/bundle.js . --extension=.msx && node ./build.js",
"test": "NODE_ENV=test node_modules/.bin/mocha -r server.js app/tests/**/*.js"
},
"browserify": {
"transform": [
"mithrilify",
"envify"
]
}
}