-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.4 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.4 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
{
"name": "sharebin",
"version": "420.2.0",
"description": "",
"license": "MIT",
"author": "Type-Delta",
"type": "module",
"main": "index.js",
"scripts": {
"transpile-esm": "npx tsc && npx tsc --outDir lib/default-esm && npx babel lib/*.js --out-dir lib/esm && npx babel lib/*.js --out-dir lib/default-esm --plugins=transform-commonjs,add-module-exports",
"dbuild": "docker image rm -f sharebin && docker build . -t sharebin:latest -t sharebin:beta-0.2.0",
"dpublish": "docker image rm -f typedelta/sharebin:latest && docker tag sharebin:latest typedelta/sharebin:latest && docker push typedelta/sharebin:latest",
"set-version": "node scripts/setVersion.mjs",
"lint": "npm run lint:backend && npm run lint:frontend",
"lint:frontend": "npm --prefix frontend run lint",
"lint:backend": "eslint backend/src --ext .ts -c backend/eslint.config.js --fix"
},
"devDependencies": {
"@babel/cli": "^7.28.0",
"@babel/core": "^7.28.0",
"@babel/plugin-transform-modules-commonjs": "^7.27.1",
"@babel/preset-env": "^7.27.2",
"@babel/preset-typescript": "^7.27.1",
"@eslint/js": "^9.22.0",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-transform-commonjs": "^1.1.6",
"eslint": "^9.22.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.13.0"
}
}