-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 1.53 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
{
"name": "nukejs",
"version": "0.0.1",
"description": "High-speed realtime framework",
"main": "public/js/app.js",
"repository": "https://github.com/FREEZX/nuke.js",
"license": "MIT",
"dependencies": {
"async": "^1.2.1",
"clean-css": "^3.1.1",
"consolidate": "^0.14.0",
"crossroads": "git://github.com/FREEZX/crossroads.js",
"css": "^2.2.0",
"domready": "^1.0.7",
"envify": "^3.0.0",
"es6-promise": "^3.0.2",
"express": "^4.12.0",
"glob": "^6.0.1",
"jwt-simple": "^0.4.1",
"lodash": "^ 4.2.1",
"mithril": "^0.2.0",
"mithril.elements": "^0.1.3",
"mkdirp": "^0.5.0",
"mongoose": "4.4.1",
"mongoose-cachebox": "^1.2.0",
"nats": "^0.5.4",
"passport": "^0.3.2",
"passport-jwt-strategy": "^1.1.3",
"passport-local": "^1.0.0",
"passport-strategy": "^1.0.0",
"primus": "^4.0.1",
"primus-nats": "^1.0.2",
"q": "^1.2.0",
"swig": "^1.4.2",
"uglify-js": "~2.6.1",
"url": "^0.11.0",
"ws": "^ 1.0.1"
},
"devDependencies": {
"should": "^5.2.0"
},
"scripts": {
"postinstall": "bower install --allow-root --config.interactive=false && npm run build",
"watch": "watchify public/js/app.js -o public/js/bundle.js -v -d .",
"start": "forever server.js",
"start-dev": "npm run watch & nodemon server.js",
"build": "NODE_ENV=production browserify -o public/js/bundle.js . && node ./build.js",
"test": "NODE_ENV=test mocha -r server.js app/tests/**/*.js"
},
"browserify": {
"transform": [
"envify"
]
}
}