forked from tinacms/tinacms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 2.11 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/@tinacms/*",
"examples/*",
"experimental-examples/*",
"packages/[^@]*"
],
"scripts": {
"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 --ignore @tinacms/starter --ignore starter-basic --ignore kitchen-sink-starter",
"version:snapshot": "pnpm exec changeset version --snapshot --ignore @tinacms/starter --ignore starter-basic --ignore kitchen-sink-starter",
"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"
},
"dependencies": {
"@changesets/cli": "2.24.3",
"@typescript-eslint/eslint-plugin": "^2.3.0",
"@typescript-eslint/parser": "5.15.0",
"@yarnpkg/pnpify": "^2.0.0-rc.20",
"danger": "^10.6.4",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.0.1",
"mime-types": "^2.1.35",
"prettier": "^2.6.0",
"pretty-quick": "^3.1.3",
"typescript": "4.3.5",
"workspace": "^0.0.1-preview.1"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"cypress": "9.5.3",
"husky": "^7.0.0",
"turbo": "^1.3.1"
},
"pnpm": {
"overrides": {
"vm2@<3.9.11": ">=3.9.11"
}
}
}