-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.83 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "personal-discord-bot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npx ts-node-dev src/index.ts",
"build": "npx tsc",
"reset-database": "npm run migrate && npm run audit-database",
"migrate": "ts-node src/scripts/migrate",
"seed": "ts-node src/scripts/seed",
"setup-tables": "src/scripts/setup-tables.sh",
"audit-database": "ts-node src/scripts/audit-database",
"format-icons": "ts-node src/scripts/format-icons",
"install-fonts": "ts-node src/scripts/install-fonts",
"jwt-secret": "ts-node src/scripts/jwt-secret",
"update-configs": "ts-node src/scripts/update-configs",
"create-module": "ts-node src/scripts/create-module"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.1",
"chalk": "^4.1.0",
"discord.js": "^12.5.1",
"dotenv": "^8.2.0",
"emoji-regex": "^9.2.2",
"express": "^4.17.1",
"fs-extra": "^9.1.0",
"glob-promise": "^4.1.0",
"http-proxy-middleware": "^1.0.6",
"jsonwebtoken": "^8.5.1",
"loglevel": "^1.7.1",
"mysql2": "^2.2.5",
"node-fetch": "^2.6.1",
"pug": "^3.0.2",
"sharp": "^0.27.2",
"socket.io": "^4.0.0",
"uuid": "^8.3.2",
"yaml": "^1.10.0"
},
"devDependencies": {
"@m.moelter/task-runner": "^1.0.3",
"@types/emoji-regex": "^9.2.0",
"@types/express": "^4.17.11",
"@types/jsonwebtoken": "^8.5.0",
"@types/multi-progress": "^2.0.3",
"@types/node-fetch": "^2.5.8",
"@types/progress": "^2.0.3",
"@types/sharp": "^0.27.1",
"@types/uuid": "^8.3.0",
"discord-api-types": "^0.12.1",
"multi-progress": "^4.0.0",
"progress": "^2.0.3",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.3"
},
"nodemonConfig": {
"ignore": [
"storage.json",
"dist/**/*"
]
}
}