-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 loc) · 1.61 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
{
"bugs": "https://github.com/encointer/encointer-js/issues",
"engines": {
"node": ">=18.14"
},
"homepage": "https://github.com/encointer/encointer-js#readme",
"license": "Apache-2.0",
"name": "root",
"packageManager": "[email protected]",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/encointer/encointer-js.git"
},
"sideEffects": false,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "./scripts/build-ts.mjs",
"clean": "polkadot-dev-clean-build",
"generate:types": "cd packages/types && yarn generate:defs",
"publish:git": "lerna version --force-publish",
"publish:npm": "lerna publish from-package --contents build",
"test": "ts-node node_modules/jest/bin/jest.js",
"test:integration": "ts-node node_modules/jest/bin/jest.js --config jest.config-integration.js",
"test:ksm": "ts-node node_modules/jest/bin/jest.js --config jest.config-integration-ksm.js",
"version": "yarn install && git stage yarn.lock"
},
"dependencies": {
"@types/node": "20.3.2",
"jest-resolve": "^29.5.0",
"jest-ts-webcompat-resolver": "^1.0.0"
},
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.18.10",
"@babel/register": "^7.18.9",
"@babel/runtime": "^7.18.9",
"@babel/types": "^7.22.5",
"@polkadot/dev": "^0.75.22",
"@polkadot/types": "^11.2.1",
"@types/jest": "^28.1.7",
"@types/websocket": "^1.0.10",
"jest": "^29.5.0",
"lerna": "^8.1.2",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"resolutions": {
"typescript": "^5.1.3"
}
}