forked from cloudflare/workers-sdk
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.64 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "wrangler-root",
"version": "0.0.0",
"private": true,
"description": "Monorepo for wrangler and associated packages",
"homepage": "https://github.com/cloudflare/workers-sdk#readme",
"bugs": {
"url": "https://github.com/cloudflare/workers-sdk/issues"
},
"license": "MIT OR Apache-2.0",
"author": "[email protected]",
"scripts": {
"build": "dotenv -- turbo build",
"check": "dotenv -- turbo check:lint check:type check:format type:tests",
"check:format": "prettier . --check --ignore-unknown",
"check:lint": "dotenv -- turbo check:lint",
"check:type": "dotenv -- turbo check:type type:tests",
"dev": "dotenv -- turbo dev",
"fix": "pnpm run prettify && dotenv -- turbo check:lint -- --fix",
"prettify": "prettier . --write --ignore-unknown",
"test": "dotenv -- turbo test --concurrency=1",
"test:ci": "dotenv -- turbo test:ci --filter=!local-mode-tests --filter=!playground-preview-worker --filter=!no-bundle-import --filter=!pages-functions-app --filter=!pages-plugin-mounted-on-root-app --filter=!workers.new --concurrency=1",
"test:ci:quarantine": "dotenv -- turbo test:ci --filter=local-mode-tests --filter=pages-functions-app --filter=pages-plugin-mounted-on-root-app --filter=playground-preview-worker --filter=no-bundle-import --filter=workers.new --concurrency=1",
"test:watch": "turbo test:watch",
"type:tests": "dotenv -- turbo type:tests",
"gen:package": "turbo gen package"
},
"dependencies": {
"@changesets/changelog-github": "^0.4.5",
"@changesets/cli": "^2.22.0",
"@types/node": "^20.0.0",
"cross-env": "^7.0.3",
"esbuild-register": "^3.5.0",
"ioredis": "^4.28.2",
"jsonc-parser": "^3.2.0",
"prettier": "^2.6.2",
"prettier-plugin-packagejson": "^2.2.18",
"rimraf": "^5.0.1",
"typescript": "^4.8.4",
"vite": "^4.0.4",
"vitest": "^0.31.1"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20230821.0",
"@turbo/gen": "^1.10.13",
"dotenv-cli": "^7.3.0",
"esbuild": "0.17.19",
"turbo": "^1.10.14"
},
"engines": {
"node": ">=16.17.0"
},
"volta": {
"node": "16.13.0"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"react": "18",
"react-dom": "18",
"@types/react": "18",
"@types/react-dom": "18"
}
},
"overrides": {
"@types/react-dom@18>@types/react": "^18",
"@types/react-tabs>@types/react": "^18",
"@types/react-transition-group>@types/react": "^18",
"@cloudflare/elements>@types/react": "^18"
},
"patchedDependencies": {
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]",
"@cloudflare/[email protected]": "patches/@[email protected]"
}
}
}