-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.69 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.69 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
{
"name": "@tahminator/sapling",
"version": "0.0.0",
"author": "Tahmid Ahmed",
"description": "A library to help you write cleaner Express.js code",
"repository": {
"url": "git+https://github.com/tahminator/sapling.git"
},
"scripts": {
"test": "pnpm run typecheck && pnpm run lint && pnpm run fmt && pnpm run vt && pnpm run build",
"vt": "vitest run",
"fmt": "pnpm run prettier",
"fmt:fix": "pnpm run prettier:fix",
"lint": "pnpm run eslint",
"lint:fix": "pnpm run eslint:fix",
"eslint": "eslint .",
"eslint:fix": "eslint . --fix",
"prettier": "NODE_OPTIONS=\"--experimental-strip-types\" prettier --check .",
"prettier:fix": "NODE_OPTIONS=\"--experimental-strip-types\" prettier --write .",
"typecheck": "tsc -b --noEmit",
"build": "rm -rf dist && tsc --project tsconfig.app.json"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"files": [
"/dist"
],
"keywords": [],
"license": "ISC",
"packageManager": "pnpm@10.12.4",
"dependencies": {
"@types/express": "^5.0.6",
"express": "^5.2.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/supertest": "^7.2.0",
"@vitest/coverage-istanbul": "^4.1.2",
"eslint": "^10.1.0",
"eslint-plugin-perfectionist": "^5.7.0",
"globals": "^17.4.0",
"jiti": "^2.6.1",
"jsdom": "^29.0.1",
"prettier": "^3.8.1",
"superjson": "^2.2.6",
"supertest": "^7.2.2",
"typescript-eslint": "^8.57.2",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.1.2"
}
}