forked from louislam/demo-kuma
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.46 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.46 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
{
"name": "demo-kuma",
"version": "2.0.0",
"main": "server.js",
"type": "module",
"scripts": {
"dev": "docker-compose -f compose-dev.yaml up",
"start": "tsx server.ts",
"build:docker-nightly": "docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 -t louislam/demo-kuma:nightly --target release -f Dockerfile . --push",
"build:docker": "docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 -t louislam/demo-kuma:2 --target release -f Dockerfile . --push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/louislam/demo-kuma.git"
},
"author": "Louis Lam",
"license": "MIT",
"bugs": {
"url": "https://github.com/louislam/demo-kuma/issues"
},
"homepage": "https://github.com/louislam/demo-kuma#readme",
"dependencies": {
"dotenv": "~10.0.0",
"ejs": "~3.1.9",
"http-graceful-shutdown": "~3.1.13",
"http-proxy": "~1.18.1",
"promisify-child-process": "~4.1.2",
"tsx": "~4.7.0"
},
"devDependencies": {
"@types/ejs": "^3.1.5",
"@types/http-proxy": "^1.17.14",
"@types/node": "~20.10.6",
"@typescript-eslint/eslint-plugin": "~6.8.0",
"@typescript-eslint/parser": "~6.8.0",
"concurrently": "^8.2.2",
"cross-env": "~7.0.3",
"eslint": "~8.50.0",
"eslint-plugin-jsdoc": "~46.8.2",
"typescript": "~5.2.2"
}
}