-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.02 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.02 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
56
57
58
59
60
61
62
63
64
65
{
"name": "helixcore",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "concurrently \"npm run watch-ts\" \"npm run build:css\" \"npm run watch-node\"",
"watch-ts": "tsc -w --incremental --preserveWatchOutput",
"watch-node": "nodemon --watch dist dist/app.js",
"build": "tsc",
"start": "node dist/app.js",
"start:bun": "bun run dist/app.js",
"build:css": "tailwindcss -i ./src/public/styles.css -o ./dist/public/styles.css --watch",
"build:views": "copyfiles -u 1 \"src/views/**/*\" dist",
"watch-views": "nodemon --watch src/views --ext ejs,html -x \"npm run build:views\"",
"prisma:generate": "npx prisma generate",
"prisma:migrate": "npx prisma migrate dev",
"prisma:dev": "npm run prisma:generate && npm run prisma:migrate"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@prisma/client": "^5.22.0",
"axios": "^1.7.8",
"bcryptjs": "^2.4.3",
"compression": "^1.7.5",
"crypto": "^1.0.1",
"ejs": "^3.1.10",
"express": "^4.21.1",
"express-rate-limit": "^7.4.1",
"express-session": "^1.18.1",
"express-ws": "^5.0.2",
"passport": "^0.7.0",
"passport-discord": "^0.1.4",
"passport-local": "^1.0.0",
"prisma": "^5.22.0",
"sqlite3": "^5.1.7",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/axios": "^0.9.36",
"@types/bcryptjs": "^2.4.6",
"@types/compression": "^1.7.5",
"@types/express": "^5.0.0",
"@types/express-session": "^1.18.1",
"@types/express-ws": "^3.0.5",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.8.1",
"@types/passport": "^1.0.17",
"@types/passport-discord": "^0.1.14",
"@types/passport-local": "^1.0.38",
"@types/ws": "^8.5.13",
"autoprefixer": "^10.4.20",
"concurrently": "^9.1.0",
"copyfiles": "^2.4.1",
"fs-extra": "^11.2.0",
"nodemon": "^3.1.7",
"postcss": "^8.4.49",
"postcss-cli": "^11.0.0",
"tailwindcss": "^3.4.15",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}