forked from Prometheus-X-association/dataspace-connector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 4.27 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "ptx-dataspace-connector",
"version": "1.8.2",
"description": "Prometheus-X Data Space Connector",
"main": "src/index.ts",
"engines": {
"node": ">=16"
},
"scripts": {
"dev": "nodemon -L --development",
"provider": "nodemon -L --provider",
"consumer": "nodemon -L --consumer",
"infrastructure": "nodemon -L --infrastructure",
"start": "node dist/src/index.js --production",
"staging": "node dist/index.js --staging",
"dev:env": "pnpx nodemon",
"build": "rimraf ./dist && tsc",
"test": "npm run test:api && npm run test:services && npm run test:access-control && npm run test:utils",
"test:api": "ts-mocha -p tsconfig.json src/tests/api/*.spec.ts --timeout 4000 --exit --serial --test",
"test:services": "ts-mocha -p tsconfig.json src/tests/services/*.spec.ts --timeout 4000 --exit --serial --test",
"test:access-control": "ts-mocha -p tsconfig.json src/tests/access-control/*.spec.ts --timeout 4000 --exit --serial --test",
"test:utils": "ts-mocha -p tsconfig.json src/tests/utils/*.spec.ts --timeout 4000 --exit --serial --test",
"prettier": "prettier --write ./src/",
"lint": "eslint src/**/*.{ts,js}",
"lint:fix": "eslint src/**/*.{ts,js} --fix",
"postinstall": "git init && git config core.hooksPath ./.git-hooks && npm i -g semver",
"postbuild": "mkdirp dist/src/keys/ && mkdirp dist/docs/ && mkdirp dist/src/public/uploads && cp .env.production dist/ && cp src/config.production.json dist/src/",
"uid": "node uid.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/bluebird": "^3.5.38",
"@types/chai": "^4.3.4",
"@types/cookie-parser": "^1.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/express-serve-static-core": "^4.17.41",
"@types/express-session": "^1.17.10",
"@types/jsonwebtoken": "^9.0.5",
"@types/mocha": "^10.0.6",
"@types/mock-fs": "^4.13.4",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.11",
"@types/node": "^18.19.3",
"@types/nodemailer": "^6.4.14",
"@types/supertest": "^2.0.12",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"axios-mock-adapter": "^2.0.0",
"chai": "^4.3.10",
"dpcp-library": "https://gitpkg.now.sh/mathieu-vision/data-processing-chain-protocol/lib?1.0.0-alpha.3",
"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",
"inquirer": "^9.2.12",
"json-odrl-manager": "github:Prometheus-X-association/odrl-manager#v2.0.0-alpha.5",
"mkdirp": "^3.0.1",
"mocha": "^10.2.0",
"mock-fs": "^5.2.0",
"mongodb-memory-server": "^10.0.0",
"nodemon": "^3.0.1",
"prettier": "^2.8.1",
"rimraf": "^3.0.2",
"semver": "^7.5.4",
"supertest": "^6.3.3",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"@types/passport": "^1.0.16",
"@types/sinon": "^17.0.3",
"axios": "^1.6.2",
"bcrypt": "^5.1.1",
"bluebird": "^3.7.2",
"connect-mongo": "^5.1.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-session": "^1.17.3",
"express-validator": "^7.0.1",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.3.0",
"mongodb-memory-server": "^10.1.2",
"mongoose": "^8.1.0",
"morgan": "^1.10.0",
"multer": "1.4.5-lts.1",
"passport": "^0.7.0",
"sinon": "^19.0.2",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"tsoa": "^6.0.0",
"winston": "^3.11.0",
"winston-daily-rotate-file": "^4.7.1",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.1/xlsx-0.20.1.tgz"
}
}