-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 879 Bytes
/
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
{
"name": "toolkit",
"version": "0.0.0",
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"repository": "[email protected]:melanieseltzer/toolkit.git",
"license": "MIT",
"scripts": {
"affected:lint": "nx affected:lint",
"affected:depgraph": "nx affected:dep-graph",
"lint:workspace": "nx workspace-lint && eslint . --ignore-pattern examples/",
"lint:projects": "nx run-many --target=lint --all",
"lint": "yarn lint:workspace && yarn lint:projects",
"changeset": "changeset",
"release": "changeset publish"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.6",
"@changesets/cli": "^2.24.3",
"@nrwl/cli": "13.4.3",
"@nrwl/tao": "13.4.3",
"@nrwl/workspace": "13.4.3",
"@types/node": "14.14.33",
"eslint": "^8.23.0",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
}
}