forked from clearlydefined/service
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.84 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 3.84 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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "service",
"version": "2.4.0",
"description": "Service side of clearlydefined.io.",
"engines": {
"node": "24"
},
"scripts": {
"test": "ENABLE_REST_VALIDATION_ERRORS=true npm run mocha && npm run lint",
"mocha": "nyc mocha --exit \"test/**/*.js\"",
"lint": "npm run tsc && npm run eslint && npm run prettier:check",
"lint:fix": "npm run eslint:fix && npm run prettier:write",
"eslint": "eslint .",
"eslint:fix": "eslint . --fix",
"tsc": "tsc",
"prettier:check": "prettier . --check",
"prettier:write": "prettier . --write",
"dev": "nodemon ./bin/www",
"start": "node --max-old-space-size=8192 ./bin/www",
"debug": "node --inspect=0.0.0.0:9228 --max-old-space-size=8192 ./bin/www"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/clearlydefined/service.git"
},
"dependencies": {
"@clearlydefined/spdx": "github:clearlydefined/spdx#v0.1.10",
"@gitbeaker/rest": "^42.4.1",
"@octokit/rest": "^22.0.0",
"ajv": "^8.17.1",
"ajv-errors": "^3.0.0",
"ajv-formats": "3.0.1",
"applicationinsights": "^1.8.10",
"axios": "^1.10.0",
"azure-storage": "^2.10.2",
"base-64": "^1.0.0",
"body-parser": "^2.2.0",
"bottleneck": "^2.15.3",
"colors": "^1.1.2",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"debug": "^4.4.1",
"express": "^5.1.0",
"express-rate-limit": "^7.5.1",
"express-routes-versioning": "^1.0.1",
"extend": "^3.0.2",
"geit": "0.0.7",
"he": "^1.1.1",
"helmet": "^8.1.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"luxon": "^3.6.1",
"memory-cache": "^0.2.0",
"minimatch": "^10.0.3",
"mkdirp": "^3.0.1",
"mongodb": "~6.16.0",
"morgan": "^1.9.1",
"painless-config": "^0.1.0",
"pako": "^2.1.0",
"passport": "^0.7.0",
"passport-github": "^1.1.0",
"promise-retry": "^2.0.1",
"rate-limit-redis": "^4.2.1",
"readdirp": "^4.1.2",
"recursive-readdir": "^2.2.1",
"redis": "^5.6.0",
"request-id": "^0.11.1",
"semver": "7.7.2",
"serialize-error": "^12.0.0",
"spdx-expression-parse": "github:clearlydefined/spdx-expression-parse.js#fork",
"spdx-license-list": "^6.10.0",
"swagger-ui-express": "^5.0.1",
"throat": "^6.0.2",
"tiny-attribution-generator": "0.1.3",
"tmp": "0.2.3",
"vso-node-api": "^6.2.8-preview",
"winston": "^3.17.0"
},
"devDependencies": {
"@tsconfig/node20": "20.1.6",
"@tsconfig/strictest": "2.0.5",
"@types/base-64": "0.1.3",
"@types/body-parser": "1.19.6",
"@types/chai": "4.3.3",
"@types/cookie-parser": "1.4.10",
"@types/cors": "2.8.19",
"@types/debug": "4.1.12",
"@types/deep-equal-in-any-order": "1.0.4",
"@types/express": "5.0.3",
"@types/lodash": "4.17.20",
"@types/memory-cache": "0.2.6",
"@types/mocha": "10.0.10",
"@types/node": "24.0.10",
"@types/he": "1.2.3",
"@types/js-yaml": "3.12.10",
"@types/luxon": "2.4.0",
"@types/morgan": "1.9.10",
"@types/pako": "1.0.1",
"@types/passport": "0.4.7",
"@types/passport-github": "1.1.13",
"@types/promise-retry": "1.1.6",
"@types/recursive-readdir": "2.2.4",
"@types/semver": "7.7.1",
"@types/sinon": "5.0.7",
"@types/swagger-ui-express": "4.1.8",
"@types/tmp": "0.2.6",
"@types/winston": "2.3.9",
"@types/xml2js": "0.4.14",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"deep-equal-in-any-order": "^2.0.6",
"eslint": "9.30.1",
"eslint-config-prettier": "10.1.5",
"mocha": "^11.7.1",
"mockttp": "^4.0.1",
"mongodb-memory-server": "^10.1.4",
"node-mocks-http": "^1.17.2",
"nodemon": "^3.1.10",
"nyc": "^17.1.0",
"prettier": "3.6.2",
"proxyquire": "^2.0.1",
"sinon": "^21.0.0",
"supertest": "^ 7.1.3",
"testcontainers": "^11.2.1",
"typescript": "5.8.3"
}
}