-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.78 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": "@debate-zone/micro-service-common-library",
"version": "1.6.0",
"description": "Shared library for debate zone micro services",
"scripts": {
"build": "tsc",
"test": "jest --passWithNoTests",
"lint": "eslint --ext .ts .",
"lint:fix": "eslint --ext .ts ./src --fix",
"format:check": "prettier --ignore-path .gitignore --check \"./src/*.+(ts|json)\"",
"format": "prettier --ignore-path .gitignore --write \"./src/*.+(ts|json)\"",
"prepublishOnly": "npm test",
"semantic-release": "semantic-release"
},
"publishConfig": {
"access": "public"
},
"files": [
"build"
],
"repository": {
"type": "git",
"url": "git+https://gitlab.com/debate-zone/debate-zone-micro-service-common-library.git"
},
"author": "Grig Theo",
"license": "ISC",
"bugs": {
"url": "https://gitlab.com/debate-zone/debate-zone-micro-service-common-library/issues"
},
"homepage": "https://gitlab.com/debate-zone/debate-zone-micro-service-common-library#readme",
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"@semantic-release/gitlab": "^12.0.2",
"@semantic-release/npm": "^10.0.3",
"@types/jest": "^29.5.2",
"@types/jsonwebtoken": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.38.0",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"semantic-release": "^21.0.3",
"typescript": "^5.0.4"
},
"dependencies": {
"axios": "^1.4.0",
"express-zod-api": "^10.8.1",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.0.3",
"zod": "^3.21.4"
},
"types": "./build/index.d.ts"
}