-
Notifications
You must be signed in to change notification settings - Fork 81
/
package.json
34 lines (34 loc) · 1006 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
32
33
34
{
"name": "@vinothpandian/react-sketch-canvas",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel --no-cache",
"preview": "turbo run preview",
"lint": "turbo run lint",
"test": "turbo run build test",
"ci:test": "turbo run build ci:test",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"ci:build": "cp README.md packages/react-sketch-canvas/ && pnpm --filter react-sketch-canvas ci:build",
"release": "pnpm test && pnpm ci:build && changeset version && changeset publish",
"pre-release": "pnpm ci:test && pnpm ci:build && changeset && changeset publish"
},
"devDependencies": {
"eslint-config-custom": "workspace:*",
"prettier": "^3.2.5",
"turbo": "^1.12.4"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"packageManager": "[email protected]",
"dependencies": {
"@changesets/cli": "^2.27.1"
}
}