-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·140 lines (140 loc) · 5.09 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "@boilerplate-engine/api",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"tsc": "tsc -p . --pretty --skipLibCheck --noEmit",
"test": "yarn jest test --silent",
"test:ci": "yarn jest test --silent --maxWorkers=2 --forceExit",
"test:debug": "jest test --detectOpenHandles --maxWorkers=4 --maxConcurrency=4 --max-old-space-size=20096",
"test:coverage": "yarn jest --silent --coverage --maxWorkers=4 --maxConcurrency=4 --forceExit",
"test:config": "yarn jest --silent --showConfig test",
"test:debug:inspect": "node --inspect-brk --expose-gc ./node_modules/.bin/jest --runInBand",
"dev": "yarn install && ts-node-dev --transpile-only --respawn -r tsconfig-paths/register ./src/server.ts --host",
"dev:debug": "yarn install && ts-node-dev --transpile-only --inspect=0.0.0.0:9229 --trace-deprecation --respawn -r tsconfig-paths/register ./src/server.ts --host",
"build": "tsc -p .",
"update:shared-deps": "yarn add @rpg-engine/shared",
"lint": "eslint --fix ./src/**/*.ts",
"start:prod": "./environment/start-prod.sh",
"format": "yarn prettier -w ./src/** --loglevel silent",
"check-formatting": "prettier --check 'src/**/*.ts'",
"bootstrap": "git pull origin master && yarn install && yarn configure",
"env:switch:dev": "./environment/env-switch.sh dev",
"env:switch:prod": "./environment/env-switch.sh prod",
"env:switch:prod:test": "./environment/env-switch.sh prod:test",
"configure:first-time": "./environment/first-time-setup.sh",
"configure": "./environment/configure.sh",
"db:export": "./environment/db-export.sh",
"db:export:swarm": "./environment/db-export-swarm.sh",
"db:import:swarm": "echo 'Please import by running bash ./environment/db-import-swarm.sh'",
"db:download": "./environment/db-download.sh",
"cache:clear": "sudo rm -rf ./src/providers/data/cache/**"
},
"husky": {
"hooks": {
"pre-push": "yarn tsc && yarn lint && yarn test",
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"@amplitude/identify": "^1.8.2",
"@amplitude/node": "^1.8.3",
"@geckos.io/server": "^2.1.8",
"@sendgrid/mail": "^7.4.0",
"@side/jest-runtime": "^1.1.0",
"@socket.io/pm2": "^5.3.0",
"@socket.io/redis-adapter": "^8.2.1",
"axios": "^0.21.0",
"axios-cache-adapter": "^2.7.3",
"cachegoose": "^8.0.0",
"compression": "^1.7.4",
"countries-cities": "^0.0.11",
"discord.js": "^14.13.0",
"express": "^4.17.1",
"express-rate-limit": "^5.2.6",
"ioredis": "^4.28.2",
"jsonwebtoken": "^9.0.0",
"jwks-rsa": "^2.0.4",
"mixpanel": "^0.13.0",
"mongoose": "5.13.15",
"mongoose-lean-virtuals": "^0.9.1",
"mongoose-paginate-v2": "^1.4.2",
"mongoose-query-logger": "^0.2.3",
"mongoose-query-parser": "^1.2.1",
"newrelic": "latest",
"number-string": "^1.1.5",
"pm2": "^5.3.0",
"socket.io": "^4.7.2",
"speedgoose": "^1.2.23"
},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@jonit-dev/decorators-utils": "^0.1.4",
"@rpg-engine/shared": "^0.8.68",
"@swc/core": "^1.3.20",
"@swc/helpers": "^0.4.14",
"@swc/jest": "^0.2.22",
"@types/bcrypt": "^3.0.0",
"@types/express": "^4.17.8",
"@types/jest": "^29.2.3",
"@types/jsonwebtoken": "^8.5.0",
"@types/lodash": "^4.14.165",
"@types/mongodb-memory-server": "^2.3.0",
"@types/morgan": "^1.9.2",
"@types/newrelic": "^9.14.0",
"@types/node": "^14.11.5",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"apicache-plus": "^2.2.2",
"babel-jest": "^27.5.1",
"bcrypt": "^5.0.0",
"bullmq": "^3.15.4",
"chalk": "^4.1.0",
"class-transformer": "^0.3.1",
"class-validator": "^0.14.0",
"cors": "^2.8.5",
"crypto-random-string": "^3.3.0",
"cryptr": "^6.0.2",
"dayjs": "^1.10.4",
"dotenv": "^8.2.0",
"eslint": "^7.13.0",
"eslint-config-standard": "^16.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-unused-imports": "^1.0.1",
"express-async-errors": "^3.1.1",
"firebase-admin": "^9.6.0",
"google-auth-library": "^7.0.4",
"husky": "^4.3.0",
"inversify": "^5.1.1",
"inversify-binding-decorators": "^4.0.0",
"inversify-express-utils": "^6.3.2",
"jest": "^29.3.1",
"lodash": "^4.17.20",
"moment-timezone": "^0.5.32",
"mongodb-memory-server": "^8.4.1",
"mongoose-hidden": "^1.9.0",
"mongoose-lean-defaults": "^2.2.0",
"mongoose-locks": "^0.3.0",
"mongoose-unique-validator": "2.0.3",
"mongoose-update-if-current": "^1.4.0",
"morgan": "^1.10.0",
"node-cron": "^2.0.3",
"pluralize": "^8.0.0",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"redis": "^4.5.1",
"redis-mock": "^0.56.3",
"reflect-metadata": "^0.1.13",
"root-path": "^0.2.1",
"route-cache": "^0.4.5",
"sib-api-v3-sdk": "^8.0.2",
"ts-jest": "^29.0.3",
"ts-mongoose": "^0.0.21",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^3.10.1",
"typescript": "^5.2.2"
}
}