forked from cloudflare/workers-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.33 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
{
"name": "wrangler-root",
"version": "0.0.0",
"private": true,
"description": "Monorepo for wrangler and associated packages",
"homepage": "https://github.com/cloudflare/wrangler2#readme",
"bugs": {
"url": "https://github.com/cloudflare/wrangler2/issues"
},
"license": "MIT OR Apache-2.0",
"author": "[email protected]",
"workspaces": [
"packages/*",
"fixtures/*"
],
"scripts": {
"build": "npm run build --workspace=wrangler --workspace=jest-environment-wrangler --workspace=pages-plugin-example --workspace=wranglerjs-compat-webpack-plugin",
"check": "run-p check:* --aggregate-output --continue-on-error",
"check:format": "prettier . --check --ignore-unknown",
"check:lint": "eslint \"packages/**/*.[tj]s?(x)\" --cache --cache-strategy content --max-warnings=0",
"check:type": "npm run check:type --workspaces --if-present",
"fix": "npm run prettify && npm run check:lint -- --fix",
"postinstall": "patch-package",
"prettify": "prettier . --write --ignore-unknown",
"test": "npm run clean --workspace=wrangler && npm run bundle --workspace=wrangler && npm run test --workspace=packages/wrangler --workspace=packages/pages-shared --if-present && npx vitest && npx jest --forceExit",
"test:ci": "npm run test:ci --workspace=packages/wrangler --workspace=packages/pages-shared --if-present && npx vitest && npx jest --forceExit"
},
"jest": {
"projects": [
"<rootDir>/fixtures/local-mode-tests/package.json"
]
},
"dependencies": {
"@changesets/changelog-github": "^0.4.5",
"@changesets/cli": "^2.22.0",
"@types/jest": "^28.1.6",
"@types/node": "^16.11.11",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"cross-env": "^7.0.3",
"esbuild-jest": "0.5.0",
"esbuild-register": "^3.3.2",
"eslint": "^8.13.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"eslint-plugin-unused-imports": "^2.0.0",
"ioredis": "^4.28.2",
"jest": "^28.1.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"prettier-plugin-packagejson": "^2.2.18",
"rimraf": "^3.0.2",
"typescript": "^4.8.4",
"vite": "^4.0.4",
"vitest": "^0.26.3"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20221111.1",
"patch-package": "^6.5.1"
},
"engines": {
"node": ">=16.13.0"
},
"volta": {
"node": "16.13.0"
}
}