-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.64 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": "cog-core",
"version": "1.0.0",
"private": true,
"main": "index.js",
"scripts": {
"start:api": "yarn ts-node --transpile-only src/server/index.ts",
"start:menuDumper": "yarn ts-node --transpile-only src/workers/index.ts menuDumper",
"start:all": "yarn ts-node --transpile-only src/workers/index.ts",
"current-version": "node -e \"console.log(require('./package.json').version);\""
},
"dependencies": {
"@bull-board/express": "^4.2.2",
"@sentry/node": "^7.9.0",
"@types/lodash": "^4.14.182",
"aws-sdk": "^2.1211.0",
"bull-repl": "^0.28.0",
"bullmq": "^1.50.5",
"cron-validator": "^1.3.1",
"date-fns": "^2.29.2",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"graphql": "^16.6.0",
"graphql-request": "^5.0.0",
"minio": "^7.0.32",
"node-fetch": "2",
"tslog": "^3.3.3",
"zod": "^3.17.10"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.16.0",
"@aws-sdk/types": "^3.15.0",
"@graphql-codegen/typescript-graphql-request": "^4.5.3",
"@types/express": "^4.17.13",
"@types/ioredis": "^4.28.7",
"@types/jest": "^26.0.23",
"@types/minio": "^7.0.13",
"@types/node": "^15.3.0",
"@types/node-fetch": "^2.6.1",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^27.1.0",
"nodemon": "^2.0.19",
"prettier": "^2.3.1",
"taskforce-connector": "^1.20.0",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}