forked from streamr-dev/network
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 1.01 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
{
"name": "streamr-monorepo",
"scripts": {
"prepare": "husky install",
"link": "lerna link",
"bootstrap": "lerna bootstrap",
"postbootstrap": "npm run versions",
"postbootstrap-pkg": "npm run versions",
"bootstrap-pkg": "npx lerna bootstrap --include-dependencies --scope",
"versions": "zx ./show-versions.mjs",
"clean": "npm run clean-dist && npx lerna clean -y # remove all node_modules",
"clean-dist": "npx lerna exec --no-bail 'rm -rf dist *.tsbuildinfo' # remove built files",
"clean-package-locks": "npx lerna exec --no-bail 'rm -f package-lock.json' # remove all package-lock files. npm run clean & npm run bootstrap to fully regenerate."
},
"dependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"cli-table": "^0.3.6",
"husky": "^6.0.0",
"lerna": "^4.0.0",
"node-gyp-build": "^4.3.0",
"semver": "^7.3.5",
"zx": "^1.14.1"
}
}