-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.08 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
72
73
74
75
76
77
78
79
80
{
"name": "@gravity-ui/expresskit",
"version": "3.2.0",
"description": "Express.js wrapper for NodeKit-based apps",
"repository": {
"type": "git",
"url": "git+https://github.com/gravity-ui/expresskit.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "npm run lint:code && npm run lint:other",
"lint:code": "eslint .",
"lint:other": "npm run prettier -- --check",
"prettier": "prettier '**/*.{md,yaml,yml,json}'",
"typecheck": "tsc --noEmit",
"test": "npm run build && jest",
"build": "rimraf dist && tsc",
"prepublishOnly": "npm run build && rimraf dist/tests",
"watch": "tsc -w",
"dev": "tsc-watch -w --onSuccess 'jest'",
"prepare": "husky"
},
"files": [
"dist"
],
"engines": {
"node": ">=20"
},
"author": "Gravity UI Team",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^21.0.1",
"@commitlint/config-conventional": "^21.0.1",
"@gravity-ui/eslint-config": "^4.3.1",
"@gravity-ui/nodekit": "^2.12.1",
"@gravity-ui/prettier-config": "^1.1.1",
"@gravity-ui/tsconfig": "^1.0.0",
"@types/accept-language-parser": "^1.5.8",
"@types/cookie-parser": "^1.4.10",
"@types/express": "^4.17.25",
"@types/jest": "^30.0.0",
"@types/node": "^22.19.19",
"@types/supertest": "^7.2.0",
"eslint": "^9.39.4",
"husky": "^9.1.7",
"jest": "^30.4.2",
"nano-staged": "^1.0.2",
"prettier": "^3.8.3",
"rimraf": "^6.1.3",
"supertest": "^7.2.2",
"tsc-watch": "^7.2.0",
"typescript": "^6.0.3"
},
"dependencies": {
"accept-language-parser": "^1.5.0",
"body-parser": "^1.20.1",
"cookie-parser": "^1.4.7",
"csp-header": "^5.2.1",
"express": "^4.21.1",
"express-csp-header": "^5.2.1",
"zod": "^4.4.3"
},
"peerDependencies": {
"@gravity-ui/nodekit": "^1.6.0 || ^2.0.0"
},
"overrides": {
"@gravity-ui/eslint-config": {
"typescript": "^6.0.3"
}
},
"nano-staged": {
"*.{js,ts}": [
"eslint --fix --quiet"
],
"*.{md,json,yml,yaml}": [
"prettier --write"
]
}
}