-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.16 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.16 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
{
"name": "cdn.api.pphat.stackdev.cloud",
"version": "1.0.0",
"description": "Image optimization and asset management service",
"type": "module",
"main": "./src/app.ts",
"module": "./src/app.ts",
"scripts": {
"css": "npx @tailwindcss/cli -i ./src/client/styles/main.css -o ./dist/client/styles/output.css --watch",
"dev": "node --watch --no-warnings=ExperimentalWarning --import ./scripts/register.mjs ./src/app.ts",
"build:css": "npx @tailwindcss/cli -i ./src/client/styles/main.css -o ./dist/client/styles/output.css --minify",
"copy:views": "node -e \"require('fs-extra').copySync('src/client/views', 'dist/client/views')\"",
"build": "tsc && npm run build:css && npm run copy:views",
"start": "node ./dist/app.js",
"migrate": "node --import ./scripts/register.mjs ./scripts/migrate.ts",
"migrate:up": "npm run migrate up",
"migrate:down": "npm run migrate down",
"migrate:status": "npm run migrate status",
"migrate:create": "npm run migrate create",
"seed": "npm run migrate seed",
"seed:create": "npm run migrate seed:create",
"db:generate": "drizzle-kit generate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio"
},
"author": "",
"license": "ISC",
"dependencies": {
"@neondatabase/serverless": "^1.0.2",
"@popperjs/core": "^2.11.8",
"@types/ejs": "^3.1.5",
"@types/express": "^5.0.6",
"@types/glob": "^8.1.0",
"bcrypt": "^6.0.0",
"better-sqlite3": "^12.6.2",
"docx-preview": "^0.3.7",
"drizzle-kit": "latest",
"drizzle-orm": "^0.45.1",
"ejs": "^4.0.1",
"express": "^5.2.1",
"express-rate-limit": "^8.2.1",
"fs-extra": "^11.3.2",
"glob": "^13.0.1",
"jsonwebtoken": "^9.0.3",
"multer": "^2.0.2",
"puppeteer": "^24.33.0",
"sharp": "^0.34.5",
"tiff.js": "^1.0.0",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@types/bcrypt": "^6.0.0",
"@types/better-sqlite3": "^7.6.13",
"@types/express-rate-limit": "^5.1.3",
"@types/fs-extra": "^11.0.4",
"@types/jsonwebtoken": "^9.0.10",
"@types/multer": "^2.0.0",
"autoprefixer": "^10.4.24",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.18"
}
}