-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.07 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
{
"name": "dotsimus-ts",
"version": "1.0.0",
"main": "build/src/index.js",
"type": "module",
"repository": "https://github.com/Microsoft-community/Dotsimus-TS.git",
"author": "Dotsimus Contributors",
"license": "gpl-v3",
"private": false,
"scripts": {
"start": "NODE_ENV=production node ./build/index.js",
"build": "tsc",
"dev": "NODE_ENV=development node --loader ts-node/esm ./src/index.ts | pino-pretty -c -t -i hostname,pid"
},
"devDependencies": {
"@types/node": "^16.9.1",
"@types/pino": "^6.3.11",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"prettier": "2.4.0"
},
"dependencies": {
"@discordjs/builders": "^0.6.0",
"@discordjs/rest": "^0.1.0-canary.0",
"@open-draft/until": "^1.0.3",
"discord-api-types": "^0.23.1",
"discord.js": "^13.1.0",
"dotenv": "^10.0.0",
"nanoid": "^3.1.25",
"pino": "^7.0.0-rc.4",
"pino-pretty": "^7.0.0",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
}
}