-
Notifications
You must be signed in to change notification settings - Fork 78
/
package.json
70 lines (70 loc) · 2.64 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
{
"name": "@requestnetwork/request-network-monorepo",
"version": "0.1.0",
"private": true,
"homepage": "https://github.com/RequestNetwork/requestNetwork",
"engines": {
"node": ">=18.0.0"
},
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/RequestNetwork/requestNetwork.git"
},
"scripts": {
"prepare": "husky install",
"build": "lerna run build",
"clean": "lerna run clean",
"build:tsc": "tsc -b packages/**/tsconfig.build.json",
"lint": "eslint . --fix --quiet",
"lint:check": "eslint . --quiet",
"lint-staged": "lint-staged",
"lerna": "lerna",
"packageJsonLint": "npmPkgJsonLint ./packages",
"publish-npm": "lerna publish --conventional-commits --exact",
"publish-manual-prerelease": "lerna publish prerelease --conventional-commits --exact",
"publish-prerelease": "yarn lerna publish --preid development --skip-git --yes --canary",
"deploy:contracts": "yarn workspace @requestnetwork/smart-contracts deploy",
"start:request-node": "yarn workspace @requestnetwork/request-node start",
"test": "lerna run test --concurrency=1",
"format": "prettier . -w",
"format:check": "prettier . -c",
"link:all": "for d in packages/*; do cd $d; yarn link; cd -; done",
"unlink:all": "for d in packages/*; do cd $d; yarn unlink; cd -; done"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "4.18.0",
"@typescript-eslint/parser": "4.18.0",
"eslint": "7.22.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsdoc": "32.3.0",
"eslint-plugin-monorepo": "0.3.2",
"eslint-plugin-prefer-arrow": "1.2.3",
"husky": "8.0.1",
"lerna": "6.6.2",
"lint-staged": "10.5.4",
"npm-package-json-lint": "5.1.0",
"prettier": "3.0.3",
"prettier-plugin-solidity": "1.0.0-beta.19",
"typescript": "5.1.3"
},
"resolutions": {
"underscore": "^1.12.1",
"crypto-js": "^4.2.0",
"minimist": "^0.2.4",
"semver": "^7.5.4",
"json-schema": "^0.4.0",
"json5": "^2.2.1"
},
"resolutionsDocs": {
"underscore": "https://github.com/RequestNetwork/requestNetwork/security/dependabot/14",
"crypto-js": "https://github.com/RequestNetwork/requestNetwork/security/dependabot/207",
"minimist": "https://github.com/RequestNetwork/requestNetwork/security/dependabot/177",
"semver": "https://github.com/RequestNetwork/requestNetwork/security/dependabot/197",
"json-schema": "https://github.com/RequestNetwork/requestNetwork/security/dependabot/51",
"json5": "https://github.com/RequestNetwork/requestNetwork/security/dependabot/165"
}
}