-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.3 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.3 KB
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
{
"name": "wmcn-api",
"version": "0.1.2",
"private": true,
"scripts": {
"start": "node ./bin/www",
"dev": "nodemon ./bin/www",
"test": "mocha test",
"build": "sh ./setup-db.sh",
"deploy": "sh ./setup-db.sh && forever start bin/www",
"populate": "sh ./setup-db.sh && node ./populate",
"app-seed": "sh ./setup-db.sh && node ./seed_apps"
},
"repository": {
"type": "git",
"url": "https://github.com/wmcn-fm/wmcn-api.git"
},
"author": "will kent-daggett",
"license": "MIT",
"bugs": {
"url": "https://github.com/wmcn-fm/wmcn-api/issues"
},
"homepage": "https://github.com/wmcn-fm/wmcn-api",
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "~1.0.0",
"connect-timeout": "^1.7.0",
"cookie-parser": "~1.0.1",
"cors": "^2.7.1",
"debug": "~0.7.4",
"express": "~4.2.0",
"forEachAsync": "^3.0.0",
"forever": "^0.14.2",
"fs": "0.0.2",
"jade": "~1.3.0",
"jsonwebtoken": "^5.0.4",
"marked": "^0.3.3",
"moment-timezone": "^0.4.0",
"morgan": "~1.0.0",
"nodemailer": "^1.4.0",
"pg": "^4.3.0",
"sql": "^0.48.0",
"static-favicon": "~1.0.0",
"superagent": "^0.21.0"
},
"devDependencies": {
"expect.js": "^0.3.1",
"faker": "^2.1.2",
"mocha": "^2.1.0",
"nodemon": "^1.3.7"
}
}