-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.15 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
{
"name": "@sorrir/framework",
"version": "v0.28.1",
"license": "Apache-2.0",
"main": "./dist/index.js",
"type": "./dist/index.d.ts",
"scripts": {
"lint-test": "eslint . --ext .ts",
"lint-fix": "eslint . --ext .ts --fix",
"build": "tsc --incremental",
"startExecutor": "npm run build && node dist/app-executor.js",
"degradation": "npm run build && node dist/degradation-scenario.js",
"test": "npm run build && jest -i",
"prepublishOnly": "rm -rf dist && npm run build",
"pnpm-create-lock": "pnpm install --lockfile-only",
"pnpm-create-lock-pre-commit": "bash -c '[[ \"X\" != \"X$(git diff --name-only --cached package.json)\" ]] && npm run pnpm-create-lock || echo \"package.json unchanged\"' && git add pnpm-lock.yaml",
"lint-fix-pre-commit": "bash -c '[[ \"X\" != \"X$(git diff --name-only --cached source)\" ]] && npm run lint-fix || echo \"sources unchanged\"'"
},
"pre-commit": [
"lint-fix-pre-commit",
"pnpm-create-lock-pre-commit"
],
"files": [
"dist"
],
"dependencies": {
"@sorrir/sorrir-framework-interface": "^1.9.0",
"@sorrir/sorrir-logging": "^2.1.0",
"@typed/maybe": "^10.4.0",
"@types/bent": "^7.3.2",
"@types/convict": "5.2.2",
"@types/express": "^4.17.11",
"@types/lodash": "^4.14.168",
"@types/node": "^12.20.10",
"@types/xxhashjs": "^0.2.2",
"ajv": "^8.11.0",
"axios": "^0.21.1",
"convict": "^6.2.1",
"crypto-js": "^4.1.1",
"express": "^4.17.1",
"fs-extra": "^9.0.1",
"graphology": "^0.15.2",
"lodash": "^4.17.21",
"mqtt": "^4.3.4",
"net": "^1.0.2",
"node-object-hash": "2.0.0",
"pnpm": "^7.0.1",
"ts-enum-utils": "^1.0.3",
"tslib": "^2.4.0",
"typescript": "^4.2.4",
"uuid": "^8.3.2",
"winston": "^3.3.3",
"ws": "^8.6.0",
"xxhashjs": "^0.2.2"
},
"devDependencies": {
"@types/jest": "28.1.3",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"aedes": "^0.46.2",
"chalk": "^4.1.2",
"eslint": "^7.25.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^28.1.1",
"pre-commit": "^1.2.2",
"prettier": "^2.2.1",
"ts-jest": "^28.0.5",
"typescript-json-schema": "^0.53.0"
}
}