-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.05 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.05 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
{
"name": "api",
"version": "1.0.0",
"description": "Kitchen Support's RESTful API backend.",
"main": "index.js",
"scripts": {
"test": "gulp lint",
"start": "node index.js"
},
"engines": {
"node": "^4.2.3"
},
"repository": {
"type": "git",
"url": "https://github.com/kitchensupport/api.git"
},
"author": "Garrick Buckley <gbuckle@purdue.edu>",
"license": "ISC",
"bugs": {
"url": "https://github.com/kitchensupport/api/issues"
},
"homepage": "https://github.com/kitchensupport/api#readme",
"dependencies": {
"babel": "^5.8.23",
"bcrypt": "^0.8.5",
"bluebird": "^3.0.5",
"body-parser": "^1.14.1",
"bookshelf": "^0.8.2",
"cors": "^2.7.1",
"express": "^4.13.3",
"knex": "^0.8.6",
"lodash": "^3.10.1",
"morgan": "^1.6.1",
"node-uuid": "^1.4.3",
"nodemailer": "^1.8.0",
"nodemailer-sendgrid-transport": "^0.2.0",
"pg": "^4.4.2",
"request": "^2.64.0"
},
"devDependencies": {
"forever-monitor": "^1.7.0",
"gulp": "^3.9.0",
"gulp-eslint": "^1.0.0"
}
}