-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.49 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
{
"name": "ts-nanoservice",
"version": "1.4.3",
"main": "build/index.js",
"module": "build/index.esm.js",
"types": "build/types/index.d.ts",
"repository": "https://github.com/benzsuankularb/ts-nanoservice",
"files": [
"build"
],
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.14",
"@types/jest": "^29.2.2",
"@types/morgan": "^1.9.4",
"@types/node": "^18.11.9",
"@types/sprintf-js": "^1.1.2",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"concurrently": "^7.5.0",
"dotenv": "^16.0.3",
"esbuild": "^0.15.13",
"eslint": "^8.26.0",
"glob": "^8.0.3",
"husky": "^8.0.1",
"jest": "^29.3.1",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"@google-cloud/pubsub": "^3.2.1",
"cors": "^2.8.5",
"express": "^4.18.2",
"mongodb": "^5.1.0",
"morgan": "^1.10.0",
"reflect-metadata": "^0.1.13",
"sprintf-js": "^1.1.2",
"zod": "^3.21.4"
},
"peerDependencies": {
"@google-cloud/pubsub": "3.x.x"
},
"scripts": {
"setup": "npx husky install && npx husky add .husky/pre-commit \"yarn style && git add --all\"",
"style": "eslint . --ext .ts && prettier --config .prettierrc 'src/**/*.ts' --write",
"test": "jest --runInBand",
"build": "node esbuild.js && tsc --preserveWatchOutput",
"publish": "yarn npm publish"
},
"packageManager": "[email protected]"
}