-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.4 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
{
"name": "nucleus-insights",
"version": "0.0.1",
"description": "Nucleus' data collection module",
"scripts": {
"rm-cache": "rm -rf dist",
"lint-list": "prettier --check . && eslint src",
"lint-fix": "eslint src --fix; prettier --write --log-level warn --cache .",
"drizzle-studio": "drizzle-kit studio",
"drizzle-migrate": "drizzle-kit generate && drizzle-kit migrate",
"build": "yarn rm-cache && tsc && tsc-alias",
"start": "dotenv -- node dist/index.js",
"dev": "yarn lint-fix && yarn build && yarn start",
"prod": "yarn build && yarn start"
},
"dependencies": {
"@types/express": "^5.0.0",
"body-parser": "^1.20.3",
"discord.js": "^14.16.2",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.35.2",
"eslint": "^9.11.1",
"express": "^4.21.0",
"postgres": "^3.4.4",
"typescript": "^5.6.2"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"dotenv-cli": "^7.4.2",
"drizzle-kit": "^0.26.2",
"globals": "^15.9.0",
"prettier": "^3.3.3",
"prettier-eslint": "^16.3.0",
"tsc-alias": "^1.8.10",
"typescript-eslint": "^8.7.0"
},
"main": "dist/index.js",
"type": "module",
"license": "MPL-2.0"
}