-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
101 lines (101 loc) · 3.25 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "jobs-bot",
"description": "Package root for Reactiflux's jobs bot",
"private": true,
"type": "module",
"imports": {
"#~/*": "./app/*"
},
"scripts": {
"dev": "npm run dev:init; run-p dev:css dev:bot",
"start": "npm run start:migrate; npm run start:bot",
"test": "vitest",
"build": "run-s build:*",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"format": "prettier --write .",
"validate": "run-p \"test -- run\" lint typecheck",
"kysely": "kysely",
"": "",
"start:migrate": "kysely migrate:list; kysely migrate:latest",
"start:bot": "node ./index.prod.js",
"prepare": "husky || true",
"typecheck": "react-router typegen && tsc -b",
"build:css": "npm run generate:css --minify",
"build:app": "react-router build",
"dev:init": "run-s start:migrate kysely:seed generate:db-types",
"dev:css": "npm run generate:css -- --watch",
"dev:bot": "node --watch --watch-path='./app' index.dev.js",
"kysely:seed": "kysely seed:run",
"generate:css": "tailwindcss -o ./app/styles/tailwind.css",
"generate:db-types": "kysely-codegen --log-level debug --dialect sqlite --out-file ./app/db.d.ts; prettier --write ./app/db.d.ts"
},
"license": "AGPL-3.0",
"dependencies": {
"@discordjs/rest": "^2.4.0",
"@isaacs/ttlcache": "^1.4.1",
"@react-router/express": "^7.0.0",
"@react-router/node": "^7.0.0",
"@react-router/serve": "^7.0.0",
"@sentry/node": "^7.120.2",
"@sentry/tracing": "^7.5.1",
"@types/lodash-es": "^4.17.12",
"better-sqlite3": "^9.6.0",
"body-parser": "^1.20.3",
"date-fns": "^4.1.0",
"discord-api-types": "0.37.97",
"discord-interactions": "^4.1.0",
"discord.js": "^14.16.0",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"isbot": "^5",
"kysely": "^0.27.5",
"kysely-ctl": "^0.10.1",
"lodash-es": "^4.17.21",
"node-cron": "^3.0.0",
"pino-http": "^10.4.0",
"pretty-bytes": "^5.6.0",
"reacord": "^0.6.0",
"react": "^18.2.0",
"react-dom": "^18.0.0",
"react-router": "^7.1.0",
"simple-oauth2": "^5.1.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@react-router/dev": "^7.1.0",
"@types/better-sqlite3": "^7.5.0",
"@types/eslint": "^9.6.1",
"@types/express": "^4.17.21",
"@types/node": "^20.17.10",
"@types/node-cron": "^3.0.1",
"@types/open-graph-scraper": "^4.8.1",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/simple-oauth2": "^5.0.7",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"@vitejs/plugin-react": "^1.3.2",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^15.14.0",
"happy-dom": "^15.11.7",
"husky": "~9.1.0",
"kysely-codegen": "^0.15.0",
"lint-staged": "~15.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"tailwindcss": "^3.0.23",
"tsconfig-paths": "^3.14.1",
"tsx": "^4.19.2",
"typescript": "5.6.3",
"typescript-eslint": "^8.18.2",
"vite": "^5.4.11",
"vitest": "~2.1.3"
},
"prettier": {
"trailingComma": "all"
}
}