-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.19 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
46
{
"name": "discordjs-diy",
"version": "1.6.1",
"main": "./dist/index.js",
"license": "MIT",
"dependencies": {
"@discordjs/builders": "^1.1.0",
"@discordjs/rest": "^0.4.1",
"autobind-decorator": "^2.4.0",
"discord-api-types": "^0.33.0",
"discord.js": "^13.6.0",
"levenshtein-edit-distance": "2.0.5",
"mongodb": "^4.2.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"@types/node": "^14.14.37",
"@types/node-fetch": "^2.5.12",
"@types/uuid": "^8.3.4",
"@types/ws": "^7.4.0",
"concurrently": "^7.2.0",
"corde": "^4.4.7",
"dotenv": "^16.0.1",
"jest": "^26.6.3",
"node-fetch": "^2.6.1",
"nodemon": "^2.0.7",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1",
"typedoc": "^0.22.15",
"typescript": "^4.7.4"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc",
"start": "node ./dist/index.js",
"watch": "tsc --watch | awk '{gsub(/\\033c/,\"\") system(\"\")}1'",
"dev:nodemon": "nodemon ./dist/test.js",
"dev": "concurrently -c red,blue -n build,nodemon \"npm:watch\" \"npm:dev:nodemon\"",
"test": "jest",
"e2e": "corde -c ./corde.config.ts"
}
}