-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.91 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.91 KB
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
{
"name": "@promentor-app/shared-lib",
"version": "1.0.40",
"description": "shared library for the application",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"./build/**/*"
],
"scripts": {
"clean": "del-cli ./build/*",
"dev-build": "npm run clean && tsc",
"build": "tsc",
"test": "mocha",
"lint": "eslint . --max-warnings 0 --report-unused-disable-directives",
"prepare": "husky install",
"prettier-format": "prettier --write ."
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pro-Mentor/shared-lib.git"
},
"keywords": [
"npm",
"pro-mentor"
],
"author": "pro-mentor",
"license": "ISC",
"bugs": {
"url": "https://github.com/Pro-Mentor/shared-lib/issues"
},
"homepage": "https://github.com/Pro-Mentor/shared-lib#readme",
"devDependencies": {
"@types/amqplib": "^0.10.4",
"@types/chai": "^4.3.5",
"@types/express": "^4.17.20",
"@types/mocha": "^10.0.1",
"@types/pg": "^8.10.9",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"chai": "^4.3.7",
"del-cli": "^5.0.0",
"eslint": "^8.48.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"mocha": "^10.2.0",
"prettier": "3.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"amqplib": "^0.10.3",
"axios": "^1.5.1",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"pg": "^8.11.3"
}
}