-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.18 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.18 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
{
"name": "postalgic-self-hosted",
"version": "1.0.0",
"description": "A self-hosted static blog generator",
"main": "server/server.js",
"type": "module",
"scripts": {
"dev": "concurrently \"npm run server:dev\" \"npm run client:dev\"",
"server:dev": "nodemon server/server.js",
"client:dev": "npm run dev --prefix vue_client",
"client:build": "npm run build --prefix vue_client",
"install:all": "npm install && npm install --prefix vue_client",
"start": "node server/server.js",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@aws-sdk/client-cloudfront": "^3.700.0",
"@aws-sdk/client-s3": "^3.700.0",
"adm-zip": "^0.5.16",
"archiver": "^7.0.1",
"better-sqlite3": "^11.6.0",
"cors": "^2.8.5",
"express": "^4.21.0",
"marked": "^15.0.0",
"mime-types": "^2.1.35",
"multer": "^1.4.5-lts.1",
"mustache": "^4.2.0",
"open-graph-scraper": "^6.11.0",
"sharp": "^0.33.5",
"simple-git": "^3.27.0",
"ssh2-sftp-client": "^11.0.0",
"uuid": "^10.0.0",
"wrangler": "^4.67.0"
},
"devDependencies": {
"concurrently": "^9.0.1",
"nodemon": "^3.1.7",
"vitest": "^4.0.15"
}
}