-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2 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
{
"name": "finanzapp",
"version": "1.0.0",
"description": "",
"main": "app.ts",
"scripts": {
"start": "NODE_PATH=./build node build/app.js",
"dev": "nodemon -L --inspect=0.0.0.0:9229 --signal SIGINT --nolazy src/app.ts",
"build": "npx rimraf ./build && npx prisma generate && npx prisma generate --schema=prisma/platform.prisma && tsc -p tsconfig.build.json",
"test": "env-cmd -f .env.test jest --runInBand --silent ",
"coverage": "env-cmd -f .env.test npx jest --runInBand --coverage",
"setup": "./setup.sh",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev --create-only",
"prisma:deploy": "prisma migrate deploy",
"prisma:deploy-test": "dotenv -e .env.test -- prisma migrate deploy"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/moment": "^2.13.0",
"@types/morgan": "^1.9.9",
"@types/mysql": "^2.15.21",
"@types/node": "^18.11.9",
"@types/supertest": "^6.0.2",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"@types/yamljs": "^0.2.34",
"dotenv-cli": "^7.3.0",
"env-cmd": "^10.1.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^29.7.0",
"jest-mock-extended": "^3.0.7",
"nodemon": "^3.1.0",
"prisma": "^5.19.1",
"rimraf": "^3.0.2",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.0",
"typescript": "5.1.3"
},
"dependencies": {
"@prisma/client": "^5.19.1",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"moment": "^2.30.1",
"morgan": "^1.10.0",
"redis": "4.6.8",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"yamljs": "^0.3.0",
"zod": "^3.23.8"
}
}