-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
82 lines (82 loc) · 2.51 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
73
74
75
76
77
78
79
80
81
82
{
"name": "catalog-registry",
"version": "0.1.1",
"description": "Prometheus-X Catalog Registry",
"main": "dist/index.js",
"scripts": {
"start": "node dist/src/index.js",
"dev": "pnpx nodemon",
"build": "rimraf ./dist && tsc",
"test": "ts-mocha -p tsconfig.json tests/**/*.spec.ts --timeout 4000 --exit",
"prettier": "prettier --write ./src/",
"lint": "eslint src/**/*.{ts,js}",
"lint:fix": "eslint src/**/*.{ts,js} --fix",
"format": "npm run prettier && npm run lint:fix",
"postinstall": "git clone https://github.com/Prometheus-X-association/reference-models.git && echo \"\n\nAll done, please setup your database with the reference models by running npm run db:init\"",
"db:init": "node scripts/dbUpdate.js",
"db:update": "rm -rf reference-models && git clone https://github.com/Prometheus-X-association/reference-models.git && node scripts/dbUpdate.js",
"setup:instance": "node scripts/configureInstance.js"
},
"keywords": [
"Prometheus-X",
"Catalog",
"Federated Catalog"
],
"author": {
"name": "Felix Bole",
"url": "https://github.com/FelixBole"
},
"maintainers": [
{
"name": "Felix Bole",
"url": "https://github.com/FelixBole"
}
],
"contributors": [
{
"name": "Felix Bole",
"url": "https://github.com/FelixBole"
}
],
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.15",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.17",
"@types/supertest": "^2.0.12",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"chai": "^4.3.7",
"eslint": "^8.30.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"mocha": "^10.2.0",
"nodemon": "^2.0.20",
"pnpm": "^8.6.6",
"prettier": "^2.8.1",
"rimraf": "^3.0.2",
"supertest": "^6.3.3",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jsonld": "^8.2.0",
"mongoose": "^7.3.2",
"node-cron": "^3.0.3",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.3"
}
}