-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.41 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.41 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
53
54
55
{
"name": "node-postgres-jsonapi-server",
"version": "0.3.0",
"private": false,
"description": "an example api written using endpoints",
"homepage": "https://github.com/sgraham785/node-postgres-jsonapi-server",
"author": {
"name": "Sean Graham",
"url": "https://github.com/sgraham785"
},
"repository": {
"type": "git",
"url": "git://github.com/sgraham785/node-postgres-jsonapi-server.git"
},
"bugs": {
"url": "https://github.com/sgraham785/node-postgres-jsonapi-server/issues"
},
"license": "MIT",
"scripts": {
"start": "nodemon server.js",
"test": "npm run lint && mocha -R spec && standard",
"lint": "jshint server.js source",
"sec": "nsp check",
"standard": "standard"
},
"dependencies": {
"body-parser": "^1.15.0",
"bookshelf": "^0.10.0",
"cors": "^2.8.0",
"csurf": "^1.8.3",
"dotenv": "^2.0.0",
"endpoints": "^0.9.2",
"express": "^4.13.2",
"express-routebuilder": "^2.1.0",
"express-session": "^1.13.0",
"helmet": "^2.1.3",
"jade": "^1.11.0",
"jsonwebtoken": "^7.1.9",
"knex": "^0.9.0",
"lodash": "^4.3.0",
"morgan": "^1.7.0",
"nodemailer": "^2.1.0",
"nunjucks": "^2.3.0",
"pg": "^4.3.0",
"serve-favicon": "^2.3.0"
},
"devDependencies": {
"debug": "^2.1.3",
"faker": "^3.0.1",
"jshint": "^2.5.11",
"nsp": "^2.3.0",
"swagger-jsdoc": "^1.4.0",
"winston": "^2.2.0"
}
}