-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.67 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
{
"name": "kaera",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"api-docs": "swagger-cli bundle ./src/modules/swagger/openapi.yaml --outfile swagger.yaml --type yaml",
"preproduction": "npm run api-docs",
"development": "dotenv -e .env.development nodemon",
"production": "dotenv -e .env.production nodemon",
"build": "tsc",
"pretest": "yarn generate",
"test": "jest",
"db:pull": "npx prisma db pull",
"db:push": "npx prisma db push",
"generate": "npx prisma generate"
},
"dependencies": {
"@prisma/client": "^4.16.2",
"axios": "^1.4.0",
"bcryptjs": "^2.4.3",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"firebase-admin": "^11.11.1",
"jsonwebtoken": "^9.0.1",
"jwks-rsa": "^3.1.0",
"moment": "^2.29.4",
"node-cron": "^3.0.3",
"prisma": "^4.16.2",
"swagger-cli": "^4.0.4",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@jest/globals": "^29.6.0",
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.17",
"@types/express-validator": "^3.0.0",
"@types/jest": "^29.5.2",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^18.15.11",
"@types/node-cron": "^3.0.11",
"@types/supertest": "^2.0.12",
"@types/swagger-ui-express": "^4.1.3",
"@types/yamljs": "^0.2.31",
"jest": "^29.6.0",
"jest-mock-extended": "^3.0.4",
"nodemon": "^1.14.9",
"supertest": "^6.3.3",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"ts-jest": "^29.1.1",
"ts-mockito": "^2.6.1",
"typescript": "^5.1.6"
}
}