-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.15 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "semblance",
"version": "1.0.0",
"description": "The AI that runs the Reality Engine",
"main": "dist/index.js",
"author": "SirH",
"type": "module",
"dependencies": {
"@prisma/client": "^3.8.1",
"@top-gg/sdk": "^3.1.3",
"bufferutil": "^4.0.6",
"discord.js": "^13.3.1",
"dotenv": "^10.0.0",
"erlpack": "github:discord/erlpack",
"fastify": "^3.27.0",
"node-schedule": "^2.1.0",
"source-map-support": "^0.5.21",
"twitter": "^1.7.1",
"twitter.js": "^0.10.1",
"undici": "^4.12.2",
"utf-8-validate": "^5.0.8",
"zlib-sync": "^0.1.7"
},
"imports": {
"#src/*": [
"./dist/src/*.js"
],
"#lib/*": [
"./dist/lib/*.js"
],
"#structures/*": [
"./dist/src/structures/*.js"
],
"#models/*": [
"./dist/src/models/*.js"
],
"#events/*": [
"./dist/src/events/*.js"
],
"#constants/*": [
"./dist/src/constants/*.js"
],
"#routing/*": [
"./dist/src/routing/*.js"
],
"#config": [
"./dist/config.js"
],
"#itemList": [
"./dist/lib/utils/itemList.js"
]
},
"scripts": {
"start": "npm run build && pm2 start --name \"Semblance\" dist/ecosystem.config.cjs",
"reload": "npm run build && pm2 reload dist/ecosystem.config.cjs",
"build": "npm i && tsc",
"cleanup": "rm -rf dist",
"setup": "npm run lint:fix && npm run prettier",
"prettier": "prettier --write index.ts config.ts src/**/*.ts lib/**/*.ts",
"lint": "eslint --ext ts",
"lint:fix": "eslint --ext ts --fix",
"prepare": "husky install"
},
"keywords": [],
"license": "ISC",
"devDependencies": {
"@types/node": "^17.0.10",
"@types/node-schedule": "^1.3.2",
"@types/source-map-support": "^0.5.4",
"@types/twitter": "^1.7.0",
"@types/ws": "^8.2.2",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.2.2",
"pm2": "^5.1.2",
"prettier": "^2.5.1",
"prisma": "^3.8.1",
"typescript": "^4.5.5"
}
}