forked from discord/linked-roles-sample
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 971 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
{
"name": "linked-roles-typescript-sample",
"version": "2.0.0",
"description": "A very simple example of a Linked Role bot for Discord, written in TypeScript",
"main": "./dist/index.js",
"scripts": {
"register": "ts-node ./src/register.ts",
"dev": "ts-node ./src/index.ts",
"build": "tsc",
"start": "node ./src/index.js"
},
"keywords": [],
"author": {
"name": "Justin Beckwith",
"email": "[email protected]"
},
"contributors": [
{
"name": "gigantino",
"email": "[email protected]",
"url": "https://github.com/gigantino"
}
],
"license": "MIT",
"devDependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.17",
"@types/node": "^20.5.0",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"cookie-parser": "^1.4.6",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"zod": "^3.21.4"
}
}