This repository has been archived by the owner on Mar 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 105
/
Copy pathpackage.json
65 lines (65 loc) · 2.65 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
{
"name": "aztec-monorepo",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@commitlint/cli": "8.1.0",
"@commitlint/config-conventional": "7.5.0",
"@commitlint/config-lerna-scopes": "8.1.0",
"@semantic-release/commit-analyzer": "^6.1.0",
"@semantic-release/git": "^7.0.8",
"@semantic-release/github": "^5.2.10",
"@semantic-release/npm": "^5.1.4",
"@semantic-release/release-notes-generator": "^7.1.4",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.0.2",
"husky": "^3.0.3",
"lerna": "^3.13.1",
"npm-run-all": "^4.1.5",
"prettier": "^1.16.4",
"semantic-release": "^15.12.4",
"shx": "^0.3.2",
"wsrun": "^5.0.0"
},
"engines": {
"node": ">=8.3"
},
"private": true,
"scripts": {
"build": "lerna link && yarn wsrun --package $PKG --recursive --stages -c build",
"build:docs": "yarn wsrun --package $PKG --parallel -c build:docs",
"build:prod": "lerna link && yarn wsrun --package $PKG --recursive --stages -c build:prod",
"clean": "yarn wsrun --package $PKG --parallel -c clean",
"clean:node_modules": "lerna clean --yes; shx rm -rf node_modules",
"commit": "git-cz",
"compile:contracts": "yarn wsrun --package $PKG --parallel -c compile:contracts",
"coverage": "yarn wsrun --package $PKG --serial -c --if has:changed coverage",
"install:all": "yarn install",
"lerna": "lerna",
"lint": "yarn wsrun --package $PKG --parallel -c lint",
"prettier": "prettier --config .prettierrc --write '**/*.{js,jsx,json,md}'",
"prettier:ci": "yarn prettier && prettier --config .prettierrc --list-different '**/*.{js,jsx,json,md}'",
"publish:docs": "yarn wsrun --package $PKG --parallel -c --if has:changed publish:docs",
"rebuild": "run-s clean build",
"script:build:artifacts": "node ./packages/monorepo-scripts/artifacts/build.js",
"script:orchestrate:artifacts": "./packages/monorepo-scripts/artifacts/orchestrate.sh",
"script:publish": "node ./packages/monorepo-scripts/publish/index.js",
"script:update:addresses": "node ./packages/monorepo-scripts/addresses/update.js",
"test": "yarn wsrun --package $PKG --serial -c --if has:changed --ifDependency test",
"test:integration": "yarn wsrun --package $PKG -c --if has:changed test:testNets",
"watch": "yarn wsrun --package $PKG --parallel -c watch",
"wsrun": "wsrun --exclude-missing --fast-exit",
"webpack-defaults": "webpack-defaults"
},
"workspaces": [
"packages/*"
],
"dependencies": {
"@semantic-release/exec": "^4.0.0",
"eslint-plugin-react": "^7.19.0",
"global": "^4.4.0"
}
}