forked from alro5/games
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 813 Bytes
/
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
{
"name": "games",
"version": "0.1.0",
"description": "games boilerplate",
"main": "index.js",
"scripts": {
"start": "node index.js",
"nodemon": "nodemon index.js",
"build": "grunt",
"watch": "grunt dev",
"startup": "npm install && npm run build && npm run nodemon"
},
"devDependencies": {
"grunt": "~0.4.5",
"grunt-concurrent": "~0.5.0",
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-concat": "~0.4.0",
"grunt-contrib-sass": "~0.7.3",
"grunt-contrib-uglify": "~0.5.0",
"grunt-contrib-watch": "~0.6.1"
},
"dependencies": {
"express": "~4.4.4",
"mongoose": "^3.8.17",
"tingodb": "^0.3.0",
"tungus": "0.0.2",
"connect": "~3.0.1",
"body-parser": "~1.4.3",
"method-override": "~2.0.2",
"express-hbs": "~0.7.10"
}
}