-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.68 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
{
"name": "linkingBot",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "tsc -p ./tsconfig.build.json",
"test": "jest --verbose --detectOpenHandles --forceExit",
"deploy:commands": "yarn ts-node src/deploy-commands.ts",
"start": "NODE_ENV=development TZ=UTC yarn ts-node src/main.ts",
"service:discord:message:update:consumer": "TZ=UTC NODE_ENV=development nodemon src/services/discord-message-consumer/main.ts",
"service:discord:channel:cleaner:consumer": "TZ=UTC NODE_ENV=development nodemon src/services/discord-channel-cleaner-consumer/main.ts",
"apecoin:role:update": "yarn ts-node src/services/apecoin/job.ts"
},
"dependencies": {
"@discordjs/builders": "^0.15.0",
"@discordjs/rest": "^0.5.0",
"@sentry/node": "^7.9.0",
"@sentry/tracing": "^7.9.0",
"@types/aws-sdk": "^2.7.0",
"@types/lodash": "^4.14.182",
"aws-sdk": "^2.1174.0",
"axios": "^0.27.2",
"crypto-js": "^4.1.1",
"discord-api-types": "^0.34.0",
"discord.js": "^13.8.0",
"dotenv": "^16.0.1",
"ethers": "^5.7.0",
"express": "^4.18.1",
"lodash": "^4.17.21",
"mixpanel": "^0.17.0",
"node-fs": "^0.1.7",
"pg": "^8.7.3",
"rxjs": "^7.5.6"
},
"devDependencies": {
"@types/jest": "^28.1.6",
"@types/node": "^18.0.3",
"@types/pg": "^8.6.5",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.1.3",
"nodemon": "^2.0.16",
"prettier": "^2.6.2",
"ts-jest": "^28.0.7",
"ts-node": "^10.8.2",
"typescript": "^4.7.4"
}
}