-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
73 lines (73 loc) · 1.73 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
{
"name": "@realmq/realmq-platform",
"version": "0.3.0",
"private": true,
"license": "OSL-3.0",
"author": "RealMQ GmbH <service@realmq.com> (https://realmq.com)",
"description": "RealMQ Platform",
"repository": "https://github.com/realmq/realmq-platform.git",
"engines": {
"node": ">=16"
},
"scripts": {
"dev": ".npm-scripts/start-dev.sh",
"lint": "xo",
"lint-fix": "xo --fix",
"validate-yaml": ".npm-scripts/validate-yaml.sh",
"validate-openapi-spec": ".npm-scripts/validate-openapi-spec.sh",
"start": "node src",
"start-debug": "nodemon --trace-warnings --inspect=0.0.0.0:9229 src",
"test": ".npm-scripts/test.sh",
"test-coverage": "jest --coverage",
"smoke-test": "test/smoke/run.sh"
},
"dependencies": {
"ajv": "^8.11.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.0",
"bunyan": "^1.8.15",
"bunyan-format": "^0.2.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-openapi": "^11.0.1",
"fast-json-patch": "^3.1.1",
"js-yaml": "^4.1.0",
"mongodb": "^4.6.0",
"mqtt": "^4.3.7",
"openapi-schema-validation": "^0.4.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"husky": "^8.0.1",
"jest": "^28.1.0",
"lint-staged": "^12.4.2",
"nodemon": "^2.0.20",
"xo": "^0.52.2"
},
"lint-staged": {
"*.js": [
"npm run lint"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"xo": {
"extends": ".eslintrc.yaml"
},
"jest": {
"collectCoverageFrom": [
"src/rules/**/*",
"src/tasks/**/*",
"!**/index.js"
],
"coverageDirectory": "./.test-coverage",
"coverageReporters": [
"lcov"
]
}
}