generated from tinyhttp/repo-template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 1.94 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
{
"name": "@tinyhttp/nest",
"version": "0.1.0",
"type": "module",
"description": "Nest.js adapter for tinyhttp",
"homepage": "https://github.com/tinyhttp/repo#readme",
"author": "rubiin <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/tinyhttp/repo.git"
},
"engines": {
"node": ">=12.4 || 14.x || >=16"
},
"types": "./dist/index.d.ts",
"exports": "./dist/index.js",
"keywords": [
"tinyhttp",
"node.js",
"web framework",
"web",
"backend",
"nest",
"nestjs",
"nestjs-adapter"
],
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"test": "node --experimental-loader esbuild-node-loader node_modules/uvu/bin.js tests",
"test:coverage": "c8 --include=src pnpm test",
"test:report": "c8 report --reporter=text-lcov > coverage.lcov",
"lint": "eslint . --ext=ts",
"format": "prettier --check \"./**/*.{ts,md}\"",
"format:fix": "prettier --write \"./**/*.{ts,md}\"",
"prepare": "husky install"
},
"dependencies": {
"@tinyhttp/app": "^2.0.26",
"@tinyhttp/cors": "^2.0.0",
"body-parser": "^1.20.1",
"sirv": "^2.0.2",
"@nestjs/common": "^9.2.1",
"@nestjs/core": "^9.2.1"
},
"peerDependencies": {
"@nestjs/common": "^9.2.1",
"@nestjs/core": "^9.2.1"
},
"devDependencies": {
"@types/node": "^18.11.17",
"@commitlint/cli": "17.3.0",
"@commitlint/config-conventional": "17.3.0",
"@rollup/plugin-typescript": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"c8": "^7.12.0",
"esbuild-node-loader": "^0.8.0",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"expect": "^29.3.1",
"husky": "^8.0.2",
"prettier": "^2.8.1",
"rollup": "^3.8.1",
"supertest-fetch": "^1.5.0",
"typescript": "^4.9.4",
"uvu": "^0.5.6"
}
}