-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.11 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
{
"name": "server-template",
"repository" : {
"type" : "git",
"url" : "https://github.com/nss-cohort-2014-04-07/server-template"
},
"version": "0.0.1",
"private": true,
"scripts":{
"start": "node app/app.js;",
"traceur": "git clone https://github.com/google/traceur-compiler tools/traceur-compiler;cd tools/traceur-compiler;npm install;rm ../../app/static/js/vendor/traceur.js;cp bin/traceur.js ../../app/static/js/vendor;",
"nss": "npm install;npm run traceur;"
},
"dependencies": {
"express": "*",
"lodash": "*",
"moment": "*",
"mongodb": "*",
"jade": "*",
"express-less": "*",
"body-parser": "*",
"morgan": "*",
"method-override": "*",
"traceur": "*",
"socket.io": "*",
"bcrypt": "*",
"cookie-session": "*",
"cookies": "*",
"multiparty": "*",
"rimraf": "*"
},
"devDependencies": {
"grunt": "*",
"grunt-contrib-jshint": "*",
"jshint-stylish": "*",
"grunt-contrib-watch": "*"
}
}