forked from Br00xx/FAIMS-Thesis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.48 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
73
74
75
76
77
78
79
80
81
{
"name": "@faims-project/conductor",
"version": "0.1.0",
"private": true,
"main": "build/src/index.js",
"scripts": {
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prestart": "npm run-script compile",
"start": "env-cmd node .",
"watch": "nodemon --ignore build --ext ts --exec 'tsc --incremental && node .'",
"test": "env-cmd jest --silent=false test/*.test.ts",
"coverage": "env-cmd jest --coverage test/*.test.ts",
"initdb": "env-cmd node scripts/initialise.js",
"load-notebooks": "env-cmd node scripts/loadNotebook.js"
},
"dependencies": {
"body-parser": "1.20.2",
"cookie-session": "2.0.0",
"cors": "2.8.5",
"express": "4.18.2",
"express-handlebars": "6.0.5",
"express-rate-limit": "^6.7.0",
"express-validator": "6.15.0",
"faims3-datamodel": "github:FAIMS/faims3-data-model",
"fast-check": "2.25.0",
"gts": "3.1.1",
"handlebars": "4.7.7.",
"jose": "4.13.0",
"nodemailer": "6.7.8",
"oauth": "0.10.0",
"passport": "0.5.3",
"passport-google-oauth20": "2.0.0",
"passport-local": "^1.0.0",
"passport-oauth2": "1.6.1",
"pouchdb": "7.3.1",
"pouchdb-find": "8.0.1",
"pouchdb-security-helper": "^2.1.2",
"qrcode": "^1.5.1",
"req-flash": "^0.0.3",
"supertest": "6.3.3",
"swagger-ui-dist": "^4.15.5",
"ts-jest": "27.1.4",
"ts-node": "10.9.1",
"typescript": "4.9.5",
"uuid": "9.0.0"
},
"devDependencies": {
"@types/cookie-session": "2.0.44",
"@types/cors": "2.8.12",
"@types/expect": "^24.3.0",
"@types/express": "4.17.14",
"@types/express-handlebars": "5.3.1",
"@types/express-session": "1.17.5",
"@types/jest": "27.5.0",
"@types/mocha": "^10.0.0",
"@types/node": "18.14.2",
"@types/nodemailer": "6.4.5",
"@types/passport": "1.0.7",
"@types/passport-google-oauth20": "2.0.11",
"@types/passport-local": "^1.0.35",
"@types/passport-oauth2": "1.4.11",
"@types/pouchdb": "6.4.0",
"@types/qrcode": "^1.5.0",
"@types/supertest": "2.0.12",
"@types/swagger-ui-dist": "^3.30.1",
"@types/uuid": "8.3.4",
"dotenv": "^16.0.3",
"env-cmd": "^10.1.0",
"jest": "^27.5.1",
"jest-fast-check": "1.0.2",
"mocha": "^10.1.0",
"nano": "^10.1.2",
"node-fetch": "^3.3.0",
"nodemon": "^2.0.20",
"pouchdb-adapter-memory": "^8.0.1",
"supertest": "^6.3.3"
}
}