-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
42 lines (42 loc) · 1.14 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
{
"name": "collab-hello-action-express",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "npx tsc",
"start": "node dist/bin/www",
"eslint:check": "npx eslint .",
"prettier:fix": "npx prettier --write .",
"prettier:check": "npx prettier --check ."
},
"dependencies": {
"@collabland/common": "^0.42.0",
"@collabland/discord": "^0.21.2",
"@collabland/models": "^0.22.1",
"@discordjs/rest": "^1.5.0",
"body-parser": "^1.20.1",
"bs58": "^5.0.0",
"cookie-parser": "~1.4.4",
"discord.js": "^14.7.1",
"dotenv": "^16.0.3",
"ethers": "^5.7.2",
"express": "~4.16.1",
"http-errors": "~1.6.3",
"morgan": "~1.9.1",
"pug": "2.0.0-beta11",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.17",
"@types/http-errors": "^2.0.1",
"@types/morgan": "^1.9.4",
"@types/node": "^18.11.19",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"prettier": "2.8.3",
"typescript": "^4.9.5"
}
}