-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 2.02 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": "ping-storage",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npm run buildServer && npm run buildClient",
"buildServer": "tsc",
"buildClient": "cd src/client && npm i && npm run build",
"start": "node dist",
"startDev": "nodemon",
"migration:generate": "npm run buildServer && typeorm migration:generate -d dist/src/dataSource.js src/migrations/$npm_config_name",
"migration:run": "npm run buildServer && typeorm migration:run -d dist/src/dataSource.js",
"migration:create": " typeorm migration:create src/migrations/$npm_config_name",
"migration:revert": " npm run buildServer && typeorm migration:revert -d dist/src/dataSource.js",
"test:back": "jest",
"typeorm": "typeorm-ts-node-esm",
"script:importDb": "npm run buildServer && node dist/src/scripts/importDb.js",
"script:checkCronMonitors": "npm run buildServer && node dist/src/scripts/checkCronMonitors.js",
"script:pingMonitors": "npm run buildServer && node dist/src/scripts/pingMonitors.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"nodemon": "^3.1.4",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.6.4"
},
"dependencies": {
"@getbrevo/brevo": "^2.2.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.13",
"@types/jest": "^29.5.2",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^20.3.1",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.21.2",
"http-status": "^1.6.2",
"joi": "^17.9.2",
"jsonwebtoken": "^9.0.2",
"path": "^0.12.7",
"pg": "^8.8.0",
"pg-connection-string": "^2.6.0",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.3.16"
},
"engines": {
"node": "^16.0.0"
}
}