forked from cloudflare/workers-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.47 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
78
79
80
81
82
83
84
85
{
"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": "wrangler@cloudflare.com",
"scripts": {
"build": "dotenv -- turbo build",
"check": "dotenv -- turbo check:lint check:type check:format type:tests",
"check:format": "prettier . --check --ignore-unknown",
"check:lint": "node ensure-turbo-build-output.mjs && 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",
"test:ci": "vitest run && dotenv -- turbo test:ci --filter=wrangler --filter=miniflare",
"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.34.6"
},
"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",
"capnpc-ts>typescript": "4.2.4"
},
"patchedDependencies": {
"ink@3.2.0": "patches/ink@3.2.0.patch",
"toucan-js@3.2.2": "patches/toucan-js@3.2.2.patch",
"@cloudflare/component-listbox@1.10.6": "patches/@cloudflare__component-listbox@1.10.6.patch",
"capnp-ts@0.7.0": "patches/capnp-ts@0.7.0.patch"
},
"packageExtensions": {
"node-pty": {
"optionalDependencies": {
"node-gyp": "^10.0.1"
}
}
}
}
}