-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.17 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
{
"name": "@lst97/common_response",
"version": "0.2.0-alpha.5",
"description": "This is a DEVELOPMENT package, not for production use. A common response structure for all the API's. Included basic error handling.",
"main": "lib/cjs/index.js",
"types": "lib/esm/index.d.ts",
"type": "commonjs",
"files": [
"lib"
],
"scripts": {
"build": "rm -rf lib/ && npx prettier --write src/ && npm run build:cjs && npm run build:esm",
"build:cjs": "tsc --module commonjs --outDir lib/cjs",
"build:esm": "tsc --module esnext --outDir lib/esm",
"test": "jest",
"prepublishOnly": "npm run build"
},
"keywords": [],
"author": "lst97",
"license": "ISC",
"devDependencies": {
"@lst97/common-response-structure": "0.2.0-alpha.7",
"@lst97/common-services": "0.1.0-alpha.5",
"@lst97/common-errors": "0.1.0-alpha.5",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/uuid": "^9.0.8",
"pino": "^8.20.0",
"pino-pretty": "^11.0.0",
"reflect-metadata": "^0.2.2",
"uuid": "^9.0.1",
"inversify": "^6.0.2",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}