-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 867 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 867 Bytes
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
{
"name": "librify-backend",
"version": "0.0.1",
"description": "The backend for Librify",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/JortvD/librify-backend.git"
},
"scripts": {
"dev": "cross-env NODE_ENV=development npm run start",
"start": "node index"
},
"keywords": [
"back-end",
"librify"
],
"author": "LibrifyOrg",
"license": "MIT",
"bugs": {
"url": "https://github.com/JortvD/librify-backend/issues"
},
"homepage": "https://github.com/JortvD/librify-backend#readme",
"dependencies": {
"async-exit-hook": "^2.0.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.3.2",
"pretty-ms": "^5.0.0",
"semver": "^6.3.0",
"shortid": "^2.2.15",
"to-semver": "^2.0.0",
"winston": "^3.2.1"
},
"devDependencies": {
"cross-env": "^6.0.3"
}
}