-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.98 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.98 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
70
71
{
"name": "@gravity-ui/expresskit-api",
"version": "1.2.0",
"description": "ExpressKit OpenApi Integration",
"main": "dist/index.js",
"scripts": {
"lint": "npm run lint:code && npm run lint:other",
"lint:code": "eslint --ext .js,.ts .",
"lint:other": "npm run prettier -- --check",
"prettier": "prettier '**/*.{md,yaml,yml,json}'",
"dev": "tsc-watch --onSuccess \"node dist/example/index.js\"",
"test": "npm run build && jest",
"build": "rimraf dist && tsc",
"prepublishOnly": "npm run build && rimraf dist/tests",
"watch": "tsc -w",
"typecheck": "tsc --noEmit",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gravity-ui/expresskit-api.git"
},
"files": [
"dist"
],
"author": "Gravity UI Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/gravity-ui/expresskit-api/issues"
},
"homepage": "https://github.com/gravity-ui/expresskit-api#readme",
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@gravity-ui/eslint-config": "^3.2.0",
"@gravity-ui/expresskit": "^2.11.1",
"@gravity-ui/nodekit": "^2.9.0",
"@gravity-ui/prettier-config": "^1.1.0",
"@gravity-ui/tsconfig": "^1.0.0",
"@types/jest": "^30.0.0",
"@types/supertest": "^6.0.3",
"@types/swagger-ui-express": "^4.1.8",
"express": "^4.21.2",
"husky": "^9.1.7",
"jest": "^30.2.0",
"rimraf": "^6.0.1",
"supertest": "^7.1.4",
"swagger-themes": "^1.4.3",
"ts-jest": "^29.4.6",
"tsc-watch": "^7.2.0",
"typescript": "^5.9.3",
"zod": "^4.3.6"
},
"peerDependencies": {
"@gravity-ui/expresskit": "^2.7.0",
"@gravity-ui/nodekit": "^1.6.0 || ^2.0.0",
"express": "^4.21.2",
"zod": "^4.3.6"
},
"dependencies": {
"swagger-ui-express": "^5.0.1"
},
"nano-staged": {
"*.{js,ts}": [
"eslint --fix --quiet"
],
"*.{md,json,yml,yaml}": [
"prettier --write"
]
}
}