-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.83 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.83 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
62
63
64
65
{
"name": "chef-express",
"version": "3.2.3",
"description": "static files server = chef-express",
"keywords": [
"chef-js",
"server",
"static-serve",
"http-server",
"https-server",
"nodejs-server",
"express",
"spa",
"nodejs",
"javascript",
"cli",
"typescript"
],
"bin": "./bin/chef-express",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"bin"
],
"repository": "git://github.com/chef-js/express.git",
"author": "Jacek Pietal <Prozi>",
"license": "MIT",
"private": false,
"scripts": {
"docs-from-main-macos": "find docs -type f -name '*.html' -exec sed -i '' -r 's_/blob/[^/]+/_/blob/main/_g' {} +",
"docs-from-main-linux": "find docs -type f -name '*.html' -exec sed -i -r 's_/blob/[^/]+/_/blob/main/_g' {} +",
"build:docs": "typedoc",
"postbuild:docs": "yarn docs-from-main-macos || yarn docs-from-main-linux",
"prebuild": "rm -rf dist",
"build": "tsc",
"pretest": "yarn build",
"test": "jest --forceExit",
"format": "prettier . --write",
"lint": "eslint src --fix",
"precommit": "yarn lint && yarn test && yarn build:docs && yarn format",
"amend": "yarn precommit && git commit -a --am --no-edit",
"start": "bin/chef-express demo",
"up": "npx npm-check-updates -u && yarn -f && yarn upgrade && yarn add express@^4 --save && yarn add @types/express@^4 -D"
},
"dependencies": {
"@pietal.dev/cache": "^2.0.2",
"chef-core": "^4.2.1",
"express": "^4"
},
"devDependencies": {
"@eslint/js": "^9.26.0",
"@types/express": "^4",
"@types/node": "^22.15.13",
"eslint": "^9.26.0",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"typedoc": "^0.28.4",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.0"
},
"resolutions": {
"minimist": "^1.2.6"
}
}