This repository has been archived by the owner on Jun 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 455
/
package.json
90 lines (90 loc) · 2.69 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
80
81
82
83
84
85
86
87
88
89
90
{
"name": "lisk-sdk-mono-repo",
"private": true,
"version": "0.1.0",
"description": "Reusable packages for use with the Lisk ecosystem",
"author": "Lisk Foundation <[email protected]>, lightcurve GmbH <[email protected]>",
"license": "Apache-2.0",
"keywords": [
"lisk",
"blockchain"
],
"homepage": "https://github.com/LiskHQ/lisk-sdk#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/LiskHQ/lisk-sdk.git"
},
"bugs": {
"url": "https://github.com/LiskHQ/lisk-sdk/issues"
},
"engines": {
"node": ">=18.12.0 <=18",
"npm": ">=8.1.0"
},
"workspaces": {
"packages": [
"framework",
"framework-plugins/*",
"elements/*",
"examples/*",
"examples/interop/*",
"commander",
"sdk",
"protocol-specs",
"test"
]
},
"scripts": {
"clean": "lerna run clean",
"clean:node_modules": "lerna clean --yes",
"clean:full": "npm run clean:node_modules && rm -rf node_modules && yarn && yarn build",
"format": "nx run-many --target=format",
"format:since": "nx affected --target=format",
"lint": "nx run-many --target=lint",
"lint:since": "nx affected --target=lint",
"lint:fix": "nx run-many --target=lint:fix",
"test": "nx run-many --target=test",
"test:ci": "nx run-many --target=test:ci",
"test:since": "nx affected --target=test",
"test:elements": "lerna run test --ignore=lisk-commander --ignore=lisk-framework --ignore=lisk-sdk --ignore=@liskhq/lisk-framework* --ignore=lisk-sdk-test",
"test:framework": "lerna run test --scope=lisk-framework",
"test:framework-plugins": "lerna run test --scope=@liskhq/lisk-framework-*",
"test:commander": "lerna run test --scope=lisk-commander",
"build": "nx run-many --target=build",
"build:since": "nx affected --target=build",
"init": "./scripts/init.sh",
"prepare": "husky install",
"postinstall": "husky install"
},
"devDependencies": {
"@parcel/packager-raw-url": "2.8.0",
"@parcel/transformer-sass": "2.8.0",
"@parcel/transformer-webmanifest": "2.8.0",
"@types/node": "18.15.3",
"@typescript-eslint/eslint-plugin": "5.44.0",
"@typescript-eslint/parser": "5.44.0",
"eslint": "8.28.0",
"eslint-config-lisk-base": "2.0.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "27.1.6",
"events": "^3.1.0",
"husky": "8.0.2",
"istanbul-lib-coverage": "3.0.0",
"istanbul-lib-report": "3.0.0",
"istanbul-reports": "3.0.0",
"lerna": "6.0.3",
"lint-staged": "13.0.3",
"nx": "15.2.1",
"path-browserify": "^1.0.0",
"prettier": "2.8.0",
"stream-browserify": "3.0.0",
"typedoc": "0.24.1",
"typescript": "5.0.2",
"yarn": "1.22.19"
},
"resolutions": {
"@types/express-serve-static-core": "4.17.31",
"@types/serve-static": "1.15.0",
"@types/express": "4.17.14"
}
}