-
Notifications
You must be signed in to change notification settings - Fork 332
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.16 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.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
{
"name": "k-vault",
"description": "K-Vault - Free File Hosting Service based on Telegram",
"version": "1.0.0",
"scripts": {
"ci-test": "concurrently --kill-others --success first \"npm start\" \"wait-on http://localhost:8080 && mocha --exit\"",
"test": "mocha",
"start": "npx wrangler pages dev ./ --kv \"img_url\" --port 8080 --binding BASIC_USER=admin --binding BASIC_PASS=123 --persist-to ./data",
"docker:init-env": "node scripts/bootstrap-env.js",
"server:dev": "npm --prefix server run dev",
"frontend:dev": "npm --prefix frontend run dev",
"frontend:build": "npm --prefix frontend run build",
"docker:up": "npm run docker:init-env && docker compose up -d --build",
"docker:down": "docker compose down",
"docker:doctor": "node scripts/docker-storage-doctor.js",
"docker:smoke:ci": "node scripts/docker-ci-smoke.js",
"regression:storage": "node scripts/storage-regression.js"
},
"dependencies": {
"@cloudflare/pages-plugin-sentry": "^1.1.3",
"@sentry/tracing": "^7.114.0"
},
"devDependencies": {
"concurrently": "^8.2.2",
"mocha": "^10.6.0",
"wait-on": "^7.2.0",
"wrangler": "^3.63.0"
}
}