-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
98 lines (98 loc) · 3.46 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
{
"name": "rndao",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "node ./lib/index.js",
"postbuild": "npm run copy-files",
"copy-files": "copyfiles -u 1 src/**/*.yml lib",
"dev": "env-cmd -f ./src/config/dev.env nodemon ./src/index.ts",
"test": "env-cmd -f ./src/config/test.env jest --runInBand --detectOpenHandles",
"dev-migrate:create": "migrate create --template-file ./src/migrations/utils/template.ts --migrations-dir=\"./src/migrations/db\" --compiler=\"ts:./src/migrations/utils/ts-compiler.js\"",
"dev-migrate:up": "migrate --migrations-dir=\"./src/migrations/db\" up --compiler=\"ts:./src/migrations/utils/ts-compiler.js\"",
"dev-migrate:down": "migrate --migrations-dir=\"./src/migrations/db\" --compiler=\"ts:./src/migrations/utils/ts-compiler.js\" down",
"migrate:create": "migrate create --template-file ./src/migrations/utils/template.ts --migrations-dir=\"./src/migrations/db\"",
"migrate:up": "migrate --migrations-dir=\"./lib/migrations/db\" up",
"migrate:down": "migrate --migrations-dir=\"./lib/migrations/db\" down",
"format": "prettier --write \"src/**/*.ts\" \"types/*.ts\" \"__tests__/**/*.ts\"",
"lint": "eslint **/*.ts",
"lint-fix": "eslint --fix **/*.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"@bull-board/express": "^5.10.2",
"@discordjs/rest": "^1.7.0",
"@notionhq/client": "^2.2.3",
"@sentry/node": "^7.50.0",
"@temporalio/client": "^1.11.3",
"@togethercrew.dev/db": "^3.0.72",
"@togethercrew.dev/tc-messagebroker": "^0.0.50",
"@types/express-session": "^1.17.7",
"@types/morgan": "^1.9.5",
"babel-jest": "^29.3.1",
"bullmq": "^5.0.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"copyfiles": "^2.4.1",
"cors": "^2.8.5",
"discord-api-types": "^0.37.39",
"discord.js": "^14.9.0",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"express-session": "^1.17.3",
"googleapis": "^134.0.0",
"handlebars": "^4.7.8",
"helmet": "^6.0.1",
"http-status": "^1.6.2",
"ioredis": "^5.3.2",
"joi": "^17.7.0",
"jsonwebtoken": "^9.0.0",
"migrate": "^2.0.1",
"moment": "^2.29.4",
"moment-timezone": "^0.5.40",
"mongodb": "^4.12.1",
"mongoose": "^6.7.5",
"morgan": "^1.10.0",
"neo4j-driver": "^5.9.0",
"node-fetch": "^2.6.7",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0",
"pino": "^8.15.0",
"swagger-jsdoc": "^6.2.5",
"swagger-ui-express": "^4.6.0",
"validator": "^13.7.0"
},
"devDependencies": {
"@types/compression": "^1.7.2",
"@types/cookie-parser": "^1.4.4",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/jest": "^29.2.3",
"@types/jsonwebtoken": "^9.0.0",
"@types/node": "^18.11.10",
"@types/node-fetch": "^2.6.2",
"@types/passport": "^1.0.11",
"@types/passport-jwt": "^3.0.7",
"@types/supertest": "^2.0.12",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@types/validator": "^13.7.10",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"dotenv": "^16.3.1",
"env-cmd": "^10.1.0",
"eslint": "^8.28.0",
"jest": "^29.3.1",
"node-mocks-http": "^1.12.1",
"nodemon": "^3.0.2",
"prettier": "3.2.5",
"supertest": "^6.3.1",
"textlint": "^14.0.3",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
}
}