-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 984 Bytes
/
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
{
"name": "pokemon-discord-bot",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"start": "node ./dist/app.js",
"gcp-build": "tsc -p .",
"build": "tsc",
"dev": "ts-node-dev -r dotenv/config --ignore-watch node_modules src/app.ts"
},
"author": "garug",
"license": "MIT",
"dependencies": {
"axios": "^0.27.2",
"cors": "^2.8.5",
"date-fns": "^2.25.0",
"discord.js": "^13.1.0",
"express": "^4.17.1",
"lodash": "^4.17.21",
"mongoose": "^6.4.6",
"newrelic": "^8.14.1",
"randomstring": "^1.2.1",
"rxjs": "^7.2.0",
"socket.io": "^4.1.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^28.1.6",
"@types/lodash": "^4.14.172",
"@types/randomstring": "^1.1.7",
"@types/uuid": "^8.3.1",
"dotenv": "^16.0.1",
"jest": "^28.1.3",
"ts-jest": "^28.0.7",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7"
}
}