-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.41 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
45
46
47
48
49
50
51
52
{
"name": "rasasa-read",
"version": "0.1.0",
"description": "",
"main": "src/index.js",
"author": "Timothee Deve",
"type": "module",
"scripts": {
"precommit": "pnpm run lint",
"start": "NODE_ENV=production pnpm node src/index.js",
"start:pretty": "NODE_ENV=production pnpm node src/index.js | pino-pretty -S",
"start:dev": "nodemon src/index.js | pino-pretty",
"lint": "pnpm run lint:prettier",
"lint:prettier": "prettier 'src/**/*.{ts,tsx,js,jsx,json}' --write",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
},
"engines": {
"node": ">=20"
},
"prettier": {
"printWidth": 110,
"tabWidth": 2,
"useTabs": false,
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": true,
"arrowParens": "avoid"
},
"jest": {
"transform": {}
},
"license": "UNLICENSED",
"dependencies": {
"fastify": "^4.24.3",
"http-errors": "^2.0.0",
"linkedom": "~0.16.4",
"node-fetch": "^3.3.2",
"pino-pretty": "^10.2.3",
"readability": "git+https://github.com/TimDeve/readability.git#28843b6de84447dd6cef04058fda336938e628dc",
"redis": "^4.6.10",
"sanitize-html": "^2.11.0",
"turndown": "^7.2.0",
"turndown-plugin-gfm": "^1.0.2"
},
"devDependencies": {
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"prettier": "^3.1.0"
}
}