forked from RequestNetwork/requestNetwork
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.95 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
{
"name": "@requestnetwork/request-network-monorepo",
"version": "0.1.0",
"private": true,
"homepage": "https://github.com/RequestNetwork/requestNetwork",
"engines": {
"node": ">=16.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-coverage": "mkdir -p ./coverage && node scripts/collect.js && nyc merge ./coverage ./coverage/coverage.json && node scripts/remap.js && cat coverage/lcov.info | coveralls",
"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",
"test": "lerna run test",
"format": "prettier . -w",
"format:check": "prettier . -c",
"link:all": "for d in packages/*; do pushd $d; yarn link; popd; done",
"unlink:all": "for d in packages/*; do pushd $d; yarn unlink; popd; done"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "4.18.0",
"@typescript-eslint/parser": "4.18.0",
"coveralls": "3.1.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-prefer-arrow": "1.2.3",
"husky": "8.0.1",
"lerna": "3.22.1",
"lint-staged": "10.5.4",
"npm-package-json-lint": "5.1.0",
"nyc": "15.1.0",
"prettier": "2.8.6",
"prettier-plugin-solidity": "1.0.0-beta.19",
"remap-istanbul": "0.13.0",
"typescript": "4.9.5"
}
}