generated from ootkin/node-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.84 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.84 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
66
67
68
69
{
"name": "skimx",
"repository": {
"type": "git",
"url": "https://github.com/ootkin/skimx.git"
},
"version": "1.1.8",
"description": "SkimX streamlines web application development with OpenAPI schemas that validate and infer types, ensuring consistency between contracts and codebases.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"skimx",
"express",
"typescript",
"zod",
"zod-openapi",
"openapi",
"oas",
"generator",
"specification"
],
"scripts": {
"test": "jest --coverage --runInBand",
"lint": "eslint --cache ./src",
"lint:fix": "eslint --cache --fix",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"prepare": "husky install",
"prepublish": "tsc",
"build": "tsc",
"start": "node dist/index.js",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"author": "ootkin",
"license": "MIT",
"devDependencies": {
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/cli": "^19.3.0",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.9",
"@typescript-eslint/parser": "^7.18.0",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"prettier": "3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"vitepress": "^1.3.4"
},
"lint-staged": {
"*.ts": "npm run lint:fix",
"*.{ts,md,yaml,yml,json,js,html}": "npm run format:fix"
},
"dependencies": {
"express": "^4.19.2",
"js-yaml": "^4.1.0",
"zod-openapi": "^2.18.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}