forked from LBDserver/backend_prototype
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.02 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "lbd-middleware",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"all": "concurrently \"npm:dev\" \"npm:generate\"",
"dev": "env-cmd -f ./config/dev.env nodemon -x ts-node src/index.ts",
"generate": "tsoa routes && tsoa swagger",
"routes": "tsoa routes",
"swagger": "tsoa swagger"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@frogcat/ttl2jsonld": "0.0.6",
"@ldflex/comunica": "^3.4.2",
"@types/multer": "^1.4.5",
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"btoa-lite": "^1.0.0",
"concurrently": "^5.3.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-session": "^1.17.1",
"form-data": "^3.0.0",
"fs": "0.0.1-security",
"graphdb": "^1.5.0",
"gridfs-stream": "^1.1.1",
"jsonwebtoken": "^8.5.1",
"lbd-api": "git://github.com/LBDserver/API",
"lbd-server": "^0.1.2",
"ldflex": "^2.11.1",
"lodash": "^4.17.20",
"mongodb": "^3.6.3",
"mongoose": "^5.11.10",
"mongoose-type-email": "^1.0.12",
"mongoose-type-url": "^2.1.0",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"multer-gridfs-storage": "^4.2.0",
"node-fetch": "^2.6.1",
"passport": "^0.4.1",
"passport-github2": "^0.1.12",
"passport-linkedin": "^1.0.0",
"path": "^0.12.7",
"request": "^2.88.2",
"solid-auth-cli": "^1.0.15",
"sparqlalgebrajs": "^2.4.0",
"swagger-ui-express": "^4.1.6",
"ts-node": "^9.1.1",
"tsoa": "^3.4.0",
"typescript": "^4.1.3",
"util": "^0.12.3",
"uuid": "^8.3.2",
"validator": "^13.5.2"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.9",
"@types/jsonwebtoken": "^8.5.0",
"@types/mongodb": "^3.6.3",
"@types/mongoose": "^5.10.3",
"@types/node": "^14.14.20",
"@types/uuid": "^8.3.0",
"@types/validator": "^13.1.2",
"env-cmd": "^10.1.0",
"nodemon": "^2.0.7"
}
}