-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
69 lines (69 loc) · 2 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
{
"name": "root",
"version": "0.13.6",
"stableVersion": "0.13.1",
"author": "Patract Labs",
"private": true,
"engines": {
"node": ">=8.2.0",
"yarn": "^1.10.1"
},
"resolutions": {
"@polkadot/api": "^7.10.1",
"@polkadot/api-contract": "^7.10.1",
"@polkadot/types": "^7.10.1",
"@polkadot/util": "^8.4.1"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@patract/dev": "^0.5.20",
"@types/chai": "^4.2.0",
"@types/ci-info": "^2.0.0",
"@types/cross-spawn": "^6.0.2",
"@types/debug": "^4.1.4",
"@types/find-up": "^2.1.0",
"@types/fs-extra": "^5.1.0",
"@types/glob": "^7.1.1",
"@types/mocha": "^5.2.6",
"@types/node": "^10.17.24",
"@types/node-fetch": "^2.3.7",
"@types/qs": "^6.5.3",
"@types/semver": "^6.0.2",
"@types/uuid": "^3.4.5",
"@types/ws": "^7.2.1",
"@types/yargs": "^15.0.5",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"gulp": "^4.0.2",
"gulp-rename": "^2.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"husky": "^4.3.0",
"node-gyp": "^8.1.0",
"prettier": "2.0.5",
"pretty-quick": "^3.0.2",
"ts-jest": "^26.5.5",
"ts-node": "^10.0.0",
"tsconfig-paths": "^3.9.0",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^4.5.4"
},
"scripts": {
"examples:deps": "cd examples/delegator && yarn && cd ../erc20 && yarn && cd ../multi-contract && yarn && cd ../plasm && yarn && cd ../solang && yarn",
"build": "node ./scripts/build.js",
"run:example": "node ./scripts/runExample.js",
"build:release": "polkadot-ci-ghact-build",
"lint": "polkadot-dev-run-lint",
"clean": "polkadot-dev-clean-build",
"test": "polkadot-dev-run-test --coverage --runInBand",
"test:one": "polkadot-dev-run-test",
"test:watch": "polkadot-dev-run-test --watch"
},
"dependencies": {
"@redspot/chai": "workspace:packages/redspot-chai"
}
}