-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.06 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.06 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
{
"name": "board-rest",
"version": "1.0.0",
"description": "A service that can help people keep track of their board games nights, with a REST API.",
"main": "server.js",
"scripts": {
"start": "node server.js",
"seeds": "node node_modules/knex/bin/cli.js migrate:latest & node node_modules/knex/bin/cli.js seed:run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/middleware2016/board-rest.git"
},
"author": "Claudio Cardinale, Alex Delbono, Pietro De Nicolao",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/middleware2016/board-rest/issues"
},
"homepage": "https://github.com/middleware2016/board-rest#readme",
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.15.2",
"bookshelf": "^0.10.2",
"compression": "^1.6.2",
"crypto": "0.0.3",
"dotenv": "^4.0.0",
"express": "^4.14.0",
"express-validator": "^3.1.2",
"jsonwebtoken": "^7.3.0",
"knex": "^0.12.6",
"moment": "^2.17.1",
"morgan": "^1.7.0",
"pg": "^6.1.2",
"sqlite3": "^3.1.8"
}
}