-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.87 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": "daily-text-epub-to-json",
"version": "2.0.0",
"description": "Convert JW daily text EPUBs to JSON format",
"main": "src/index.js",
"type": "module",
"bin": {
"daily-text-epub-to-json": "./src/cli.js"
},
"scripts": {
"test": "NODE_OPTIONS='--experimental-vm-modules' jest",
"test:watch": "NODE_OPTIONS='--experimental-vm-modules' jest --watch",
"test:coverage": "NODE_OPTIONS='--experimental-vm-modules' jest --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"extract": "node src/index.js extract",
"process": "node src/index.js process",
"build": "node src/index.js build",
"cli": "node src/cli.js",
"extract:legacy": "node extract-epub.cjs",
"process:legacy": "node load-texts-to-json.cjs",
"build:legacy": "npm run extract:legacy && npm run process:legacy",
"dev:web": "cd web && npm run dev",
"dev:server": "node server/index.js",
"build:web": "cd web && npm run build",
"install:web": "cd web && npm install",
"serve:web": "NODE_ENV=production node server/index.js",
"install:hooks": "bash scripts/install-hooks.sh",
"postinstall": "bash scripts/install-hooks.sh 2>/dev/null || true"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"commander": "^15.0.0",
"cors": "^2.8.6",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"mongoose": "^9.7.1",
"multer": "^2.2.0",
"node-stream-zip": "^1.15.0",
"sanitize-html": "^2.17.5",
"yauzl": "^3.4.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.29.7",
"@babel/preset-react": "^7.29.7",
"@eslint/js": "^9.39.2",
"@types/jest": "^30.0.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"jest": "^30.5.0",
"prettier": "^3.9.6",
"shadcn": "^4.13.0"
}
}