-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.25 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@acdh-oeaw/imprint-service",
"private": true,
"license": "MIT",
"type": "module",
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": "22.x",
"pnpm": "9.x"
},
"packageManager": "[email protected]",
"scripts": {
"build": "tsup-node ./src/index.ts",
"dev": "dotenv -c development -- tsx watch ./src/index.ts",
"format:check": "prettier . --cache --check --ignore-path ./.gitignore",
"format:fix": "pnpm run format:check --write",
"lint:check": "eslint . --cache --ignore-path ./.gitignore",
"lint:fix": "pnpm run lint:check --fix",
"preinstall": "npx only-allow pnpm",
"setup": "is-ci || simple-git-hooks",
"start": "dotenv -c production -- node ./dist/index.js",
"test": "dotenv -c test -- node --import tsx --test --test-reporter spec ./test/**/*.test.ts",
"types:check": "tsc --noEmit",
"validate": "run-p format:check lint:check types:check test"
},
"dependencies": {
"@acdh-oeaw/lib": "^0.1.12",
"cors": "^2.8.5",
"express": "^4.19.2",
"rehype-stringify": "^10.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.0",
"templite": "^1.2.0",
"unified": "^11.0.5",
"yaml": "^2.4.5",
"zod": "^3.23.8"
},
"devDependencies": {
"@acdh-oeaw/commitlint-config": "^1.0.0",
"@acdh-oeaw/eslint-config": "^1.0.9",
"@acdh-oeaw/eslint-config-node": "^1.0.10",
"@acdh-oeaw/prettier-config": "^2.0.0",
"@acdh-oeaw/tsconfig": "^1.1.1",
"@commitlint/cli": "^18.6.1",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/supertest": "^6.0.2",
"dotenv-cli": "^7.4.2",
"eslint": "^8.57.0",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.7",
"npm-run-all2": "^6.2.0",
"prettier": "^3.3.2",
"supertest": "^7.0.0",
"tsup": "^8.1.0",
"tsx": "^4.15.7",
"typescript": "^5.5.2"
},
"commitlint": {
"extends": "@acdh-oeaw/commitlint-config"
},
"eslintConfig": {
"extends": [
"@acdh-oeaw/eslint-config",
"@acdh-oeaw/eslint-config/strict",
"@acdh-oeaw/eslint-config-node"
]
},
"lint-staged": {
"*.@(ts)": [
"eslint --cache --fix",
"prettier --cache --write"
],
"*.!(ts)": "prettier --cache --ignore-unknown --write"
},
"prettier": "@acdh-oeaw/prettier-config",
"simple-git-hooks": {
"commit-msg": "pnpm exec commitlint --edit",
"pre-commit": "pnpm exec lint-staged"
}
}