-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.32 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
{
"name": "network",
"version": "1.3.1",
"description": "Network module for MyAEGEE, for network history and network status.",
"main": "lib/run.js",
"scripts": {
"start": "nodemon -L -e 'js,json' lib/run.js",
"nodemon-start": "nodemon -e 'js,json' lib/run.js",
"lint": "eslint .",
"lint-staged": "lint-staged",
"db:create": "sequelize db:create",
"db:setup": "sequelize db:drop; sequelize db:create; sequelize db:migrate",
"db:migrate": "sequelize db:migrate",
"test": "NODE_ENV=test npm run db:setup && jest test/**/*.test.js --runInBand --forceExit",
"test:ci": "NODE_ENV=test npm run db:setup && jest --runInBand --forceExit",
"open-coverage": "open-cli coverage/lcov-report/index.html",
"prepare": "husky install"
},
"keywords": [],
"author": "Rik Smale <github.com/WikiRik>",
"license": "ISC",
"bugs": {
"url": "https://github.com/AEGEE/network/issues"
},
"homepage": "https://github.com/AEGEE/network",
"lint-staged": {
"*.{js,jsx}": "eslint"
},
"jest": {
"testEnvironment": "node",
"verbose": true,
"collectCoverage": true,
"collectCoverageFrom": [
"lib/**/*.js",
"models/**/*.js",
"!lib/run.js",
"!lib/sequelize.js",
"!lib/logger.js"
]
},
"devDependencies": {
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@faker-js/faker": "^8.3.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"conventional-changelog": "^5.1.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.31.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"lint-staged": "^15.2.10",
"nock": "^13.5.6",
"nyc": "^15.1.0",
"open-cli": "^8.0.0",
"semantic-release": "^22.0.12"
},
"dependencies": {
"@bugsnag/js": "^7.25.0",
"body-parser": "^1.20.2",
"bunyan": "^1.8.15",
"cron": "^3.2.1",
"express": "^4.21.2",
"express-promise-router": "^4.1.1",
"joi": "^17.13.3",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"morgan": "^1.10.0",
"on-finished": "^2.3.0",
"pg": "^8.13.1",
"prom-client": "^15.1.3",
"request": "^2.88.2",
"request-promise-native": "^1.0.9",
"sequelize": "^6.37.5",
"sequelize-cli": "^6.6.2"
}
}