-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.13 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
{
"name": "kvaas",
"version": "0.2.0",
"description": "kvaas",
"main": "main.js",
"scripts": {
"dev": "nodemon",
"migrate:mongo": "ts-node -r dotenv/config ./api/infra/migrations/mongo/index.ts",
"build": "npx tsc",
"clean": "rm -rf build/api/*"
},
"author": "David Núñez <[email protected] | [email protected]>",
"license": "ISC",
"dependencies": {
"awilix": "^4.2.6",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"js-yaml": "^3.14.0",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.6.2",
"node-fetch": "^2.6.1",
"pino-http": "^5.3.0",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/express": "^4.17.8",
"@types/glob": "^7.1.3",
"@types/js-yaml": "^3.12.5",
"@types/jsonwebtoken": "^8.5.0",
"@types/mongodb": "^3.5.27",
"@types/node": "^14.10.1",
"@types/node-fetch": "^2.5.7",
"@types/pino": "^6.3.0",
"@types/pino-http": "^5.0.5",
"@types/uuid": "^8.3.0",
"nodemon": "^2.0.4",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
}
}