-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 873 Bytes
/
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
{
"scripts": {
"start:app": "ts-node main.ts",
"start:cron": "ts-node-dev cron.ts",
"dev:app": "ts-node-dev main.ts",
"dev:cron": "ts-node-dev cron.ts",
"start": "concurrently \"npm run start:cron\" \"npm run start:app\"",
"dev": "concurrently \"npm run dev:cron\" \"npm run dev:app\"",
"commit": "cz"
},
"dependencies": {
"@prisma/client": "^5.7.1",
"cors": "^2.8.5",
"express": "^4.18.2",
"mercadopago": "^2.0.6",
"node-cron": "^3.0.3",
"prisma": "^5.7.1",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node-cron": "^3.0.11",
"commitizen": "^4.3.0",
"concurrently": "^8.2.2",
"dotenv": "^16.4.5"
}
}