forked from OpenTermsArchive/federation-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.29 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
{
"name": "@opentermsarchive/federated-api",
"version": "0.1.0",
"homepage": "https://github.com/OpenTermsArchive/federated-api#readme",
"bugs": {
"url": "https://github.com/OpenTermsArchive/federated-api/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OpenTermsArchive/federated-api.git"
},
"license": "EUPL-1.2",
"type": "module",
"scripts": {
"lint": "eslint .",
"start": "node src/index.js",
"test": "cross-env NODE_ENV=test mocha --recursive \"./src/**/*.test.js\" --exit"
},
"dependencies": {
"config": "^3.3.9",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"helmet": "^7.1.0",
"morgan": "^1.10.0",
"node-fetch": "^3.3.2",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"winston": "^3.11.0",
"winston-mail": "^2.0.0"
},
"devDependencies": {
"@stylistic/eslint-plugin-js": "^1.4.1",
"chai": "^4.3.10",
"cross-env": "^7.0.3",
"eslint": "^8.54.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-json-format": "^2.0.1",
"mocha": "^10.2.0",
"nock": "^13.3.8",
"supertest": "^6.3.3"
},
"engines": {
"node": ">=16.0.0"
}
}