-
Notifications
You must be signed in to change notification settings - Fork 112
/
Copy pathpackage.json
39 lines (39 loc) · 1.33 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
{
"name": "root",
"private": true,
"//": {
"scripts": {
"version": "TODO: remove 'npm i --package-lock-only' when this is resolved https://github.com/changesets/changesets/issues/421 "
}
},
"scripts": {
"clean": "npm run clean --workspaces",
"full-clean": "npm run full-clean --workspaces && rimraf node_modules",
"compile": "npm run compile --workspaces",
"build": "npm run clean --workspaces && npm run compile --workspaces && npm run readme",
"watch": "npm run watch --workspaces",
"lint": "npm run lint --workspaces",
"format": "npm run format --workspaces",
"test": "npm run test --workspaces",
"test-coverage": "npm run test-coverage --workspaces",
"package": "npm run package -w packages/cli",
"version": "changeset version && npm i --package-lock-only && npm run build && npm run version -w packages/cli",
"release": "npm run build && changeset publish",
"readme": "npm run readme -w packages/edge && npm run readme -w packages/cli"
},
"workspaces": [
"packages/lib",
"packages/testlib",
"packages/edge",
"packages/cli"
],
"devDependencies": {
"@changesets/changelog-github": "^0.4.6",
"@changesets/cli": "^2.24.4",
"@changesets/release-utils": "^0.1.10",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"cz-conventional-changelog": "^3.3.0",
"rimraf": "^3.0.2"
}
}