This repository has been archived by the owner on Nov 4, 2024. It is now read-only.
forked from tinacms/tinacms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.88 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
{
"name": "root",
"private": true,
"version": "0.0.0",
"workspaces": [
"packages/@tinacms/*",
"examples/*",
"experimental-examples/*",
"packages/[^@]*"
],
"scripts": {
"dev": "pnpm watch",
"watch": "pnpm run build && pnpm --filter=\"./packages/@tinacms/scripts\" run watch",
"build": "turbo run build --filter=\"./packages/**\"",
"test": "turbo run test --filter=\"./packages/**\" -- --silent",
"types": "turbo run types --filter=\"./packages/**\"",
"build:e2e": "pnpm run build && pnpm --filter=kitchen-sink-starter run build",
"start:e2e": "pnpm --filter=kitchen-sink-starter run start ",
"start:e2e:dev": "pnpm --filter=kitchen-sink-starter run dev",
"test:dev": "pnpm cypress open",
"test:e2e": "pnpm cypress run",
"version": "pnpm exec changeset version",
"version:snapshot": "pnpm exec changeset version --snapshot",
"publish": "pnpm publish -r --no-git-checks --access public && pnpm exec changeset tag",
"publish:beta": "pnpm publish -r --tag beta --no-git-checks --access public",
"publish:dev": "pnpm publish -r --tag dev --no-git-checks --access public",
"push-tags": "pnpm exec changeset tag && git pull && git push --follow-tags",
"lint": "eslint \"./packages/**/*{.ts,.tsx}\"",
"format": "prettier --write .",
"postinstall": "husky install"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "2.27.8",
"@types/jest": "^29.5.13",
"@types/picomatch": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"cypress": "13.13.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^7.0.4",
"picomatch": "^4.0.2",
"prettier": "^2.8.8",
"pretty-quick": "^3.3.1",
"turbo": "^1.13.4",
"typescript": "^5.6.2",
"vite": "^4.5.5"
},
"packageManager": "[email protected]"
}