-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.68 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.68 KB
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
{
"name": "gladosbot",
"version": "1.0.0",
"main": "src/index.ts",
"type": "module",
"engines": {
"node": "22.14.0"
},
"scripts": {
"build": "rimraf dist && tsc && tsc-alias",
"start:build": "npm run build && node dist/index.js",
"start:nodemon": "nodemon --exec \"node --inspect=0.0.0.0:9229 -r tsx\" src/index.ts",
"start": "tsx src/index.ts",
"dev": "tsx watch src/index.ts",
"prettier-format": "prettier --config .prettierrc \"src/**/*.ts\" --write",
"deploy-commands": "npm run build && node dist/deploy-commands.js",
"lint": "eslint . ",
"lint:fix": "eslint . --fix",
"migrate:create": "npm run build && drizzle-kit generate --config \"dist/data/config/drizzle.config.js\" --name",
"migrate:apply": "tsx scripts/runMigrations.ts"
},
"author": "Sourceware Lab",
"license": "ISC",
"description": "",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"discord-api-types": "^0.37.118",
"discord.js": "^14.17.3",
"dotenv": "^16.4.7",
"drizzle-orm": "^0.39.3",
"eslint-plugin-drizzle": "^0.2.3",
"pg": "^8.13.1",
"pg-hstore": "^2.3.4"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@types/node": "^22.13.1",
"@types/pg": "^8.11.11",
"@types/validator": "^13.12.2",
"cross-env": "^7.0.3",
"drizzle-kit": "^0.30.4",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"globals": "^15.14.0",
"nodemon": "^3.1.9",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"tsc-alias": "^1.8.10",
"tslib": "^2.8.1",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0"
}
}