-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.73 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.73 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
59
60
61
{
"name": "respec.org",
"version": "1.0.0",
"description": "respec.org website and HTTP APIs",
"main": "app.js",
"repository": "git@github.com:marcoscaceres/respec.org.git",
"author": "Marcos Caceres <marcos@marcosc.com>",
"type": "module",
"license": "MIT",
"engines": {
"node": ">=24"
},
"dependencies": {
"chalk": "^5.6.2",
"compression": "^1.8.1",
"cors": "^2.8.6",
"express": "^5.2.1",
"express-rate-limit": "^8.4.1",
"helmet": "^8.1.0",
"morgan": "^1.10.1",
"nanoid": "^5.1.11",
"serialize-error": "^13.0.1",
"split2": "^4.2.0",
"ucontent": "^2.0.0"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"prestart": "npm run update-data-sources && npm run regenerate-docs",
"start": "node --env-file-if-exists=.env --enable-source-maps build/app.js",
"start:server": "pm2 start ecosystem.config.cjs --env production",
"test": "jasmine --config=tests/jasmine.json",
"regenerate-docs": "node --trace-warnings ./build/scripts/regenerate-docs.js",
"update-data-sources": "node --env-file-if-exists=.env build/scripts/update-data-sources.js"
},
"packageManager": "pnpm@9.8.0",
"pnpm": {
"overrides": {
"html-minifier": "npm:html-minifier-terser@^7.2.0"
}
},
"simple-git-hooks": {
"post-merge": "pnpm i && pnpm build"
},
"prettier": {
"singleQuote": false,
"trailingComma": "all",
"arrowParens": "avoid"
},
"devDependencies": {
"@types/compression": "^1.8.1",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/morgan": "^1.9.10",
"@types/node": "^24.12.2",
"@types/split2": "^4.2.3",
"jasmine": "^6.2.0",
"simple-git-hooks": "^2.13.1",
"typescript": "^6.0.3"
}
}