forked from tinacms/tinacms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 2.03 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
54
55
56
57
58
59
{
"name": "root",
"private": true,
"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",
"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/cli": "^2.26.0",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"mime-types": "^2.1.35",
"prettier": "^2.8.4",
"pretty-quick": "^3.1.3",
"typescript": "4.3.5",
"workspace": "^0.0.1-preview.1",
"@types/jest": "^27.5.2",
"cypress": "9.7.0",
"husky": "^7.0.4",
"turbo": "^1.8.5"
},
"pnpm": {
"overrides": {
"@types/react": "17.0.47",
"vm2": "3.9.19",
"json5": "1.0.2",
"ua-parser-js": "0.7.33",
"fast-xml-parser": "4.2.5",
"semver": "7.5.2"
}
}
}