-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.63 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
{
"name": "egendata-operator",
"version": "0.33.1",
"description": "Backend for managing consents and data flow",
"scripts": {
"start": "node ./lib/server.js",
"start:watch": "nodemon ./lib/server.js",
"dev": "npm run migrate up && NODE_ENV=development nodemon --inspect ./lib/server.js",
"test": "NODE_ENV=test jest -c jest.config.js --color",
"test:watch": "NODE_ENV=test jest -c jest.config.js --watchAll",
"test:debug": "NODE_ENV=test node --inspect-brk node_modules/jest/bin/jest -c jest.config.js --runInBand",
"integration": "NODE_ENV=test jest -c jest.integration.config.js",
"integration:watch": "jest -c jest.integration.config.js --watchAll",
"lint": "eslint '**/*.js'",
"migrate": "./scripts/migrate",
"testAndLint": "npm test && npm run lint"
},
"contributors": [
"Adam Näslund <[email protected]>",
"Einar Persson <[email protected]>",
"Johan Öbrink <[email protected]>",
"Alexander Czigler <[email protected]>"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/egendata/operator/issues"
},
"homepage": "https://github.com/egendata/operator#readme",
"dependencies": {
"@egendata/messaging": "0.8.0",
"@panva/jose": "1.9.3",
"axios": "0.21.1",
"body-parser": "1.19.0",
"change-case": "4.1.1",
"changecase-objects": "1.1.0",
"cookie-parser": "1.4.5",
"cors": "2.8.5",
"dotenv": "8.2.0",
"dropbox-fs": "0.3.1",
"elastic-apm-node": "3.7.0",
"express": "4.17.1",
"http-errors": "1.8.0",
"memory-fs": "0.4.1",
"merge": "1.2.1",
"moment": "2.27.0",
"morgan": "1.10.0",
"nconf": "0.10.0",
"node-pg-migrate": "5.8.1",
"pg": "8.3.0",
"uuid": "8.3.0",
"winston": "3.3.3"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^9.1.1",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/exec": "^3.3.8",
"@semantic-release/git": "^7.0.18",
"@types/axios": "^0.14.0",
"@types/jest": "^26.0.22",
"@types/supertest": "^2.0.10",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^22.20.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"get-value": "^3.0.1",
"husky": "^5.2.0",
"ip": "^1.1.5",
"jest": "^26.5.3",
"jest-spec-reporter": "^1.0.14",
"lint-staged": "^10.5.4",
"nodemon": "^2.0.5",
"object-path": "^0.11.5",
"semantic-release": "^17.2.3",
"semantic-release-docker": "^2.2.0",
"supertest": "^4.0.2"
}
}