-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 867 Bytes
/
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
{
"name": "bitter-press",
"version": "1.0.31",
"description": "better express.js experience",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"test": "jest --verbose --config ./test/jest-config.json",
"lint": "tsc",
"build:dev": "tsc --w"
},
"keywords": [
"decorator-express",
"typescript-framework",
"framework"
],
"author": "CANMERTINYO",
"license": "ISC",
"dependencies": {
"@changesets/cli": "^2.26.2",
"express": "^4.18.2",
"i": "^0.3.7",
"jest": "^29.7.0",
"reflect-metadata": "^0.1.13",
"ts-jest": "^29.1.1",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
},
"devDependencies": {
"@swc/core": "^1.3.93",
"@types/express": "^4.17.19",
"@types/jest": "^29.5.5"
}
}