forked from polywrap/wrap-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.52 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
{
"name": "root",
"description": "Web3API Monorepo",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/web3-api/monorepo.git"
},
"workspaces": {
"packages": [
"./packages/**/*",
"./demos/**/*"
],
"nohoist": [
"**/@testing-library/*",
"**/@types/testing-library*",
"**/@types/react-lottie"
]
},
"scripts": {
"reset": "yarn clean && yarn && yarn build",
"clean": "rimraf ./**/node_modules ./**/build ./**/coverage",
"build": "lerna run build --no-private --ignore @web3api/cli && yarn build:cli",
"build:cli": "lerna run build --scope @web3api/cli",
"lint": "lerna run lint",
"lint:fix": "lerna run lint -- --fix",
"lint:ci": "lerna run lint --parallel",
"test": "lerna run test --no-private",
"test:ci": "lerna run test:ci --no-private --parallel",
"version:apply": "npx lerna version $(cat VERSION) --exact --no-git-tag-version --yes",
"postversion:apply": "git add . && git commit -m \"build(release): migrate to `cat ./VERSION`\"",
"publish:npm": "lerna publish from-package --no-private --yes --registry https://registry.npmjs.org/ --no-verify-access"
},
"devDependencies": {
"lerna": "3.22.1",
"rimraf": "3.0.2",
"@typescript-eslint/eslint-plugin": "4.11.1",
"@typescript-eslint/parser": "4.11.1",
"eslint": "7.16.0",
"eslint-config-prettier": "7.1.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-prettier": "3.3.0",
"prettier": "2.2.1"
}
}