-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.18 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": "amazon-server",
"version": "1.0.0",
"description": "",
"type": "module",
"scripts": {
"dev": "cross-env ts-node ./src/app.ts",
"postbuild": "cross-env mkdir dist -p && cp package.json dist/package.json && cp .env.example dist/.env.example && cd dist",
"build": "cross-env tsc --build",
"start": "node ./dist/app.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@discordjs/builders": "1.6.3",
"@discordjs/rest": "1.7.1",
"@types/lodash": "4.14.194",
"dayjs": "1.11.7",
"discord-api-types": "0.37.42",
"discord.js": "13.16.0",
"dotenv": "16.0.3",
"get-urls": "10.0.1",
"lodash": "4.17.21",
"log-update": "5.0.1",
"mysql2": "3.3.1",
"nanoid": "4.0.2",
"reflect-metadata": "0.1.13",
"typeorm": "0.3.16",
"ws": "8.13.0"
},
"devDependencies": {
"@types/node": "20.2.1",
"@typescript-eslint/eslint-plugin": "5.59.6",
"@typescript-eslint/parser": "5.59.6",
"cross-env": "7.0.3",
"eslint": "8.40.0",
"ts-node": "10.9.1",
"typescript": "5.0.4"
},
"optionalDependencies": {
"bufferutil": "^4.0.7",
"utf-8-validate": "^6.0.3",
"zlib-sync": "^0.1.8"
}
}