-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.65 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
{
"name": "mozeconomia",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "test",
"dev": "ts-node-dev --transpile-only --ignore-watch node_modules src/index.ts",
"preprod": "npx prisma migrate deploy",
"prod": "node ./dist/index.js",
"migration:save": "npx prisma migrate dev --name create-tables",
"migration:reset": "npx prisma migrate reset",
"build": "npx prisma generate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bboa3/mozeconome-api.git"
},
"keywords": [
"ogolfim"
],
"author": "Arlindo Boa",
"license": "ISC",
"bugs": {
"url": "https://github.com/bboa3/mozeconome-api/issues"
},
"homepage": "https://www.mozeconomia.co.mz/",
"dependencies": {
"@pdftron/pdfnet-node": "*",
"@prisma/client": "^2.30.3",
"cors": "^2.8.5",
"date-fns": "^2.22.1",
"dotenv": "^10.0.0",
"dotenv-expand": "^5.1.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"handlebars": "^4.7.7",
"helmet": "^4.6.0",
"multer": "^1.4.2",
"node-cron": "^3.0.0",
"node-downloader-helper": "^1.0.18",
"nodemailer": "^6.6.2",
"prisma": "^2.30.3",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-express": "^4.1.6",
"xlsx": "^0.17.0",
"yup": "^0.32.9"
},
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/express": "^4.17.12",
"@types/multer": "^1.4.6",
"@types/node-cron": "^2.0.3",
"@types/nodemailer": "^6.4.2",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@types/yup": "^0.29.11",
"ts-node-dev": "^1.1.6",
"typescript": "^4.3.4"
}
}