-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.1 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 2.1 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
{
"name": "CFGoodNet",
"version": "0.0.0",
"description": "",
"main": "dist/app.cjs",
"author": "",
"license": "UNLICENSED",
"private": true,
"type": "module",
"engines": {
"node": ">=24.11.0",
"pnpm": "^10.17.0"
},
"scripts": {
"build": "node --run clean && node --run build:bundle",
"build:bundle": "esbuild src/main.ts --bundle --platform=node --format=cjs --target=node22 --outfile=dist/app.cjs --sourcemap",
"clean": "rimraf dist",
"dev": "node --run clean && node --run build:bundle && node --run dev-start",
"dev-start": "concurrently --raw node:dev:*",
"dev:app": "node --watch --watch-preserve-output --enable-source-maps --env-file .env dist/app.cjs",
"dev:build": "esbuild src/main.ts --bundle --platform=node --format=cjs --target=node22 --outfile=dist/app.cjs --sourcemap --watch",
"docker:build": "docker build --tag CFGoodNet .",
"docker:run": "docker run --init --interactive --tty --publish 3000:3000 CFGoodNet",
"fix": "node --run format && node --run fix:lint",
"fix:lint": "eslint --fix .",
"format": "prettier --write .",
"package:zip": "pnpm run build && node scripts/package-zip.mjs",
"start": "node --enable-source-maps --env-file .env dist/app.cjs",
"test": "concurrently --group node:test:* && node --run test-node",
"test-node": "tsx --import ./test/shim.mjs --test --test-reporter spec --env-file .env \"src/**/*.test.ts\"",
"test:format": "prettier --check .",
"test:lint": "eslint .",
"test:types": "tsc --noEmit --pretty"
},
"dependencies": {
"node-forge": "^1.3.3",
"selfsigned": "^5.5.0",
"yaml": "^2.8.2"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/node": "^24.10.1",
"@types/node-forge": "^1.3.14",
"bestzip": "2.2.1",
"concurrently": "^9.2.1",
"esbuild": "^0.27.3",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-n": "^17.23.1",
"globals": "^16.5.0",
"prettier": "3.6.2",
"rimraf": "^6.1.2",
"tsx": "^4.20.6",
"typescript": "~5.9.3",
"typescript-eslint": "^8.47.0",
"yazl": "^3.3.1"
}
}