-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 928 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": "rest-api",
"version": "1.0.0",
"description": "an api to manage authentication, users, games etc",
"main": "index.js",
"scripts": {
"start": "node index.js",
"debug": "node --inspect index.js",
"debug:break": "node --inspect-brk index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elniffi/rest-api.git"
},
"keywords": [
"nodejs",
"rest",
"http",
"https",
"expressjs"
],
"author": "Alexander Engström <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/elniffi/rest-api/issues"
},
"homepage": "https://github.com/elniffi/rest-api#readme",
"dependencies": {
"ajv": "6.6.2",
"body-parser": "1.18.3",
"compression": "1.7.3",
"cookie-parser": "1.4.3",
"express": "4.16.4",
"helmet": "3.15.0",
"jsonwebtoken": "8.4.0",
"morgan": "1.9.1",
"sqlite3": "4.0.4"
}
}