-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
33 lines (33 loc) · 863 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
{
"name": "ruc-paraguay-etl",
"version": "1.0.0",
"description": "An ETL to own your private database of Paraguay RUC (As the goverment doesn't have a webservice for that)",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"build": "tsc",
"migrate": "npx prisma migrate dev --name init",
"prisma:studio": "npx prisma studio"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.7.0",
"adm-zip": "^0.5.10",
"axios": "^1.6.2",
"cron": "^3.1.6",
"dotenv": "^16.3.1",
"express": "^4.18.2"
},
"devDependencies": {
"@types/adm-zip": "^0.5.5",
"@types/express": "^4.17.21",
"nodemon": "^3.0.2",
"prisma": "^5.7.0",
"ts-node": "^10.9.1",
"tsx": "^4.6.2",
"typescript": "^4.9.5"
}
}