-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.65 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
{
"name": "cover-router",
"version": "2.3.10",
"description": "Cover Router",
"main": "src/index.js",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"dev": "nodemon src/index.js",
"lint": "eslint --max-warnings 0 .",
"lint:fix": "npm run lint -- --fix",
"start": "node src/index.js",
"test": "nyc --reporter=text mocha test/**/*.js --exit",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NexusMutual/cover-router.git"
},
"author": "nexusmutual.io",
"license": "ISC",
"bugs": {
"url": "https://github.com/NexusMutual/cover-router/issues"
},
"homepage": "https://github.com/NexusMutual/cover-router#readme",
"dependencies": {
"@nexusmutual/deployments": "^2.10.0",
"@nexusmutual/utils": "^0.0.1",
"convict": "^6.2.4",
"dotenv": "^16.0.3",
"ethers": "^5.7.2",
"express": "^4.18.2",
"node-fetch": "^2.6.9",
"redux": "^4.2.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"chai": "^4.3.7",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-semistandard": "^17.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"husky": "^9.1.6",
"mocha": "^10.2.0",
"nodemon": "^3.1.2",
"nyc": "^15.1.0",
"sinon": "^15.0.2",
"supertest": "^6.3.4"
}
}