-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 loc) · 2.25 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
62
63
64
65
66
67
68
69
70
71
{
"name": "tezosMonsters",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon",
"typeorm:gen": "ts-node ./node_modules/typeorm/cli.js migration:generate --config ./src/ormconfig.ts",
"typeorm:migrate": "ts-node ./node_modules/.bin/typeorm migration:run --config ./src/ormconfig.ts",
"typeorm:revert": "ts-node ./node_modules/.bin/typeorm migration:revert --config ./src/ormconfig.ts",
"start-pm2": "pm2 pm2.config.js --env production",
"start": "pm2-runtime pm2.config.js --env production",
"start-fo": "tsc && && ./node_modules/.bin/forever --minUptime 10000 --spinSleepTime 1000 -v -c \"./node_modules/.bin/ts-node -r dotenv/config --project ./tsconfig.json\" ./src/index.ts ",
"postinstall": "tsc && export NODE_OPTIONS=--max_old_space_size=2048"
},
"resolutions": {
"tslib": "1.11.2"
},
"author": "",
"license": "ISC",
"dependencies": {
"@google-cloud/storage": "^5.1.1",
"@sentry/node": "^5.16.0",
"@types/ajv": "^1.0.0",
"@types/axios": "^0.14.0",
"@types/body-parser": "^1.19.0",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.6",
"@types/express-jwt": "^0.0.42",
"@types/jsonwebtoken": "^8.5.0",
"@types/log4js": "^2.3.5",
"@types/morgan": "^1.9.0",
"@types/multer": "^1.4.3",
"@types/socket.io": "^2.1.8",
"@types/socketio-jwt": "^0.2.0",
"@types/uuid": "^8.0.0",
"ajv": "^6.12.2",
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"chalk": "^4.0.0",
"class-transformer": "^0.2.3",
"class-validator": "^0.12.2",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-jwt": "^5.3.1",
"googleapis": "^52.1.0",
"jsonwebtoken": "^8.5.1",
"log4js": "^6.3.0",
"moment": "^2.25.3",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"node-cache": "^5.1.0",
"pg": "^8.2.1",
"pm2": "^4.4.0",
"reflect-metadata": "^0.1.13",
"routing-controllers": "^0.9.0-alpha.4",
"socket.io": "^2.3.0",
"socketio-jwt": "^4.6.2",
"ts-node": "^8.10.1",
"tslib": "^2.0.0",
"typedi": "^0.8.0",
"typeorm": "^0.2.25",
"typescript": "^3.9.2",
"uuid": "^8.1.0"
},
"devDependencies": {
"nodemon": "^2.0.2",
"prettier": "^2.0.5"
}
}