-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
47 lines (47 loc) · 1.23 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
{
"name": "ibm-hyperprotect-mbaas",
"version": "0.0.5",
"description": "Backend for IBM Hyper Protect SDK for iOS",
"devDependencies": {
"@types/jsonwebtoken": "^8.5.6",
"@types/node": "^16.11.11",
"assert": "^2.0.0",
"ts-node": "^10.4.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.2"
},
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/config": "^0.0.40",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/helmet": "^0.0.48",
"@types/morgan": "^1.9.3",
"@types/uuid": "^8.3.3",
"@types/uuidv4": "^5.0.0",
"ajv": "^8.8.2",
"bcryptjs": "^2.4.3",
"class-validator": "^0.13.2",
"config": "^3.3.6",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"helmet": "^4.6.0",
"jest": "^27.4.3",
"json-diff": "^0.5.4",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.2.1",
"morgan": "^1.10.0",
"reflect-metadata": "^0.1.13",
"typedjson": "^1.8.0",
"typeorm": "^0.2.41",
"uuid": "^8.3.2"
},
"scripts": {
"tsc": "tsc",
"start": "set debug=* && ts-node-dev ./src/index.ts --respawn --transpileOnly",
"prod": "tsc && node ./build/app.js",
"test": "jest"
}
}