-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1021 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
33
34
35
36
37
38
39
{
"name": "video-poker",
"version": "0.0.1",
"description": "Web-Based video poker terminal",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/timondavis/video-poker-terminal.git"
},
"author": "Timon Davis",
"license": "MIT",
"bugs": {
"url": "https://github.com/timondavis/video-poker-terminal/issues"
},
"homepage": "https://github.com/timondavis/video-poker-terminal",
"devDependencies": {
"compress": "^0.99.0",
"grunt": "^0.4.5",
"grunt-contrib-watch": "^0.6.1",
"grunt-sass": "^1.0.0",
"jade": "^1.11.0",
"node-sass": "^3.2.0"
},
"dependencies": {
"body-parser": "^1.13.3",
"compression": "^1.5.2",
"connect": "^3.4.0",
"express": "^4.13.3",
"express-session": "^1.11.3",
"method-override": "^2.3.5",
"morgan": "^1.6.1",
"node-of-cards": "^1.0.0",
"serve-static": "^1.10.0",
"underscore": "^1.8.3"
}
}