-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
44 lines (44 loc) · 1.73 KB
/
package.json
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
{
"name": "@njfamirm/decap-cms-github-backend",
"author": "S. Amir Mohammad Najafi <[email protected]> (https://www.njfamirm.ir)",
"description": "Self-hosted decap cms github backend.",
"version": "1.2.0",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"b": "yarn build",
"c": "yarn clean",
"cb": "run-s clean build",
"s": "yarn start",
"w": "yarn watch",
"start": "NODE_OPTIONS=--enable-source-maps run-s clean build serve",
"build": "yarn build:es --analyze=verbose",
"build:ts": "tsc --build",
"build:es": "esbuild src/index.ts --platform=node --external:simple-oauth2 --target=node22 --bundle --format=esm --minify --sourcemap --outdir=dist --out-extension:.js=.mjs",
"clean": "rm -rf dist build .tsbuildinfo",
"serve": "node --enable-source-maps dist/index.mjs",
"serve:debug": "node --inspect --enable-source-maps dist/index.mjs",
"watch": "run-s clean build && run-p watch:es watch:node",
"watch:node": "nodemon -w dist/ --enable-source-maps dist/index.mjs",
"watch:debug-node": "nodemon -w dist/ --inspect --enable-source-maps dist/index.mjs",
"watch:ts": "yarn build:ts --watch --preserveWatchOutput",
"watch:es": "yarn build:es --watch",
"release": "standard-version --sign"
},
"dependencies": {
"@alwatr/logger": "^2.4.1",
"@alwatr/nano-server": "^1.2.7",
"simple-oauth2": "~5.1.0",
"tslib": "^2.8.1"
},
"devDependencies": {
"@types/node": "^22.10.5",
"@types/simple-oauth2": "^5.0.7",
"esbuild": "^0.24.2",
"npm-run-all": "^4.1.5",
"standard-version": "^9.5.0",
"typescript": "^5.7.3"
},
"packageManager": "[email protected]+sha256.c17d3797fb9a9115bf375e31bfd30058cac6bc9c3b8807a3d8cb2094794b51ca"
}