-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
33 lines (33 loc) · 1.12 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
{
"private": true,
"description": "",
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"example": "npm run build && npm run -w examples/demo-1 dev",
"example:prod": "NODE_ENV=production npm run -w examples/demo-1 dev",
"build": "turbo run build --filter './packages/*'",
"watch": "turbo run watch --filter './packages/*'",
"clean": "find . -name dist -type d -not -path './node_modules/*' -exec rm -rf {} +",
"install-links": "npm ci",
"changeset": "changeset add",
"version": "changeset version",
"publish": "changeset publish",
"release-all": "npm run clean && npm run build && npm run version && npm install && git add . && git commit -m 'chore: release' && npm run publish && git push"
},
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"eslint": "^8.42.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"npm-run-all": "^4.1.5",
"tsup": "^6.6.3",
"tsx": "^3.12.6",
"turbo": "^1.9.3"
}
}