-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.17 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
{
"name": "crappy-birds-api",
"version": "1.0.1",
"description": "server api for crappy bird",
"main": "index.js",
"scripts": {
"start": "tsc && node dist/main.js",
"lint": "eslint . --ext .ts",
"dev": "tsc --watch & nodemon -q -w dist dist/main.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "CrappyBird core team",
"license": "ISC",
"engines": {
"node": ">=16.6.0"
},
"devDependencies": {
"@discordjs/builders": "^0.6.0",
"@discordjs/rest": "^0.1.0-canary.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.5",
"@types/node": "^16.10.1",
"discord-api-types": "^0.23.1",
"eslint": "^8.2.0",
"typescript": "^4.4.3"
},
"dependencies": {
"class-validator": "^0.13.1",
"cors": "^2.8.5",
"discord.js": "^13.2.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"husky": "^7.0.2",
"inversify": "^6.0.1",
"inversify-express-utils": "^6.4.3",
"pg": "^8.7.1",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.37",
"web3": "^1.5.3",
"winston": "^3.6.0",
"winston-daily-rotate-file": "^4.6.1"
}
}