-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.15 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "consents-api",
"version": "0.1.1",
"private": true,
"main": "build/src/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kazimanzurrashid/consents-api-node"
},
"scripts": {
"prepare": "husky install",
"compile": "tsc --noEmit",
"format": "prettier --check --write ./**/*.{ts,js,json,md}",
"lint": "eslint ./ --fix",
"pre-commit": "lint-staged",
"test": "jest",
"coverage": "jest --ci --coverage",
"build": "rimraf build && tsc",
"pack": "rimraf dist && ncc build ./src/index.ts --source-map --target es2021 --external pg-cloudflare",
"copy-other-required-files": "ts-node copy-other-required-files.ts",
"release": "release-it",
"start": "nodemon src/index.ts"
},
"dependencies": {
"express": "^4.19.2",
"express-pino-logger": "^7.0.0",
"joi": "^17.13.1",
"pg": "^8.11.5",
"pino": "^9.1.0",
"reflect-metadata": "^0.2.2",
"swagger-ui-express": "^5.0.1",
"tsyringe": "^4.8.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@faker-js/faker": "^8.4.1",
"@release-it/conventional-changelog": "^8.0.1",
"@testcontainers/postgresql": "^10.9.0",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.13.0",
"@types/pg": "^8.11.6",
"@types/supertest": "^6.0.2",
"@types/swagger-ui-express": "^4.1.6",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.11.0",
"@vercel/ncc": "^0.38.1",
"copy-dir": "^1.3.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-github": "^4.10.2",
"eslint-plugin-jest": "^28.5.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.5",
"nodemon": "^3.1.2",
"prettier": "^3.2.5",
"release-it": "^17.3.0",
"rimraf": "^5.0.7",
"supertest": "^7.0.0",
"testcontainers": "^10.9.0",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}