-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.72 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
{
"name": "dms-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsoa spec-and-routes && tsc",
"start": "node build/src/index.js",
"dev": "concurrently \"nodemon\" \"nodemon -x tsoa spec-and-routes\"",
"test": "echo \"Error: no test specified\" && exit 1",
"typeorm:gen": "typeorm-ts-node-commonjs migration:generate src/migrations/seed -d src/database/data-source.ts",
"typeorm:run": "typeorm-ts-node-commonjs migration:run -d src/database/data-source.ts",
"connect-db": "./cloud-sql-proxy --credentials-file oval-proxy-386602-d8e9b45cc2b7-service-account.json oval-proxy-386602:us-central1:postgresql &"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@novu/node": "^0.16.4",
"body-parser": "^1.20.2",
"combine-image": "^1.0.3",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-rate-limit": "^6.8.1",
"firebase-admin": "^11.8.0",
"jimp": "^0.22.8",
"multer": "^1.4.3",
"node-cron": "^3.0.2",
"novu": "^0.16.4",
"pdf-img-convert": "^1.2.1",
"pg": "^8.11.0",
"redis": "^4.6.7",
"reflect-metadata": "^0.1.13",
"swagger-ui-express": "^4.6.3",
"tsyringe": "^4.7.0",
"typeorm": "0.3.16"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/node": "^16.11.10",
"@types/node-cron": "^3.0.8",
"@types/swagger-ui-express": "^4.1.3",
"concurrently": "^8.0.1",
"nodemon": "^2.0.22",
"ts-node": "10.9.1",
"tsoa": "^5.1.1",
"typescript": "4.5.2"
},
"engines": {
"node": "16.x.x"
}
}