forked from flamingchickens1540/CLUCK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.93 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
{
"name": "cluck2",
"type": "module",
"scripts": {
"dev": "npm-run-all -c --parallel watch:**",
"dev:frontend": "npm-run-all -c --parallel serve build:css watch:frontend",
"watch:backend": "tsx watch src/index.ts --tsconfig ./tsconfig.json",
"watch:css": "tailwindcss -i ./src/app.css -o static/app.css --watch",
"watch:frontend": "tsx esbuild-frontend.ts --watch",
"build:css": "tailwindcss -i ./src/app.css -o static/app.css --minify",
"build:frontend": "tsx esbuild-frontend.ts",
"build:backend": "tsx esbuild-backend.ts",
"build": "npm-run-all -c --parallel build:**",
"prod": "NODE_ENV=prod node --enable-source-maps build/index.js",
"lint:style": "prettier --check .",
"lint:code": "eslint . -c eslint.config.js",
"lint": "npm-run-all -l -c --parallel lint:**",
"format": "prettier --write .",
"createaccount": "tsx dev/create_account.ts $1 $2 $3"
},
"dependencies": {
"@googleapis/sheets": "^9.0.0",
"@hono/node-server": "^1.12.0",
"@prisma/client": "^5.17.0",
"@slack/bolt": "^4.0.0-rc.1",
"@slack/web-api": "^7",
"ag-grid-community": "^32.0.2",
"async-lock": "^1.4.1",
"config": "^3.3.12",
"core-js-pure": "^3.37.1",
"google-auth-library": "^9.11.0",
"hono": "^4.5.0",
"node-schedule": "^2.1.1",
"pino": "^9.3.1",
"pino-pretty": "^11.2.1",
"quickchart-js": "^3.1.3",
"reflect-metadata": "^0.2.2",
"rss-parser": "^3.13.0",
"sanitize-html": "^2.13.0",
"slack-block-builder": "^2.8.0",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5",
"ws": "^8.18.0"
},
"devDependencies": {
"@chialab/esbuild-plugin-html": "^0.18.2",
"@eslint/js": "^9.6.0",
"@faker-js/faker": "^8.4.1",
"@types/async-lock": "^1.4.2",
"@types/config": "^3.3.4",
"@types/core-js": "^2.5.8",
"@types/eslint__js": "^8.42.3",
"@types/node": "^20.14.11",
"@types/node-schedule": "^2.1.7",
"@types/sanitize-html": "^2.13.0",
"@types/validator": "^13.12.0",
"@types/ws": "^8.5.11",
"autoprefixer": "^10.4.19",
"esbuild": "^0.21.5",
"esbuild-sass-plugin": "^3.3.1",
"eslint": "^9.9.0",
"eslint-formatter-markdown": "^1.0.4",
"htmlnano": "^2.1.1",
"npm-run-all": "^4.1.5",
"pre-commit": "^1.2.2",
"prettier": "^3.3.3",
"prisma": "^5.17.0",
"tailwindcss": "^3.4.10",
"tsx": "^4.16.2",
"typescript": "^5.5.3",
"typescript-eslint": "^8.2.0",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^2.0.3"
},
"engines": {
"node": ">=21.0.0"
},
"overrides": {
"uri-js": "npm:uri-js-replace"
},
"pre-commit": [
"lint:code",
"format"
]
}