generated from Laurry-gee/workers-ns
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.74 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
{
"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]",
"workspaces": [
"packages/*",
"fixtures/*"
],
"scripts": {
"build": "turbo build",
"check": "turbo check:lint check:type check:format type:tests",
"check:format": "prettier . --check --ignore-unknown",
"check:lint": "turbo check:lint",
"check:type": "turbo check:type type:tests",
"dev": "turbo dev",
"fix": "npm run prettify && turbo check:lint -- --fix",
"postinstall": "patch-package",
"prettify": "prettier . --write --ignore-unknown",
"test": "turbo test",
"test:ci": "turbo test:ci --filter=!local-mode-tests --filter=!no-bundle-import",
"test:watch": "turbo test:watch",
"type:tests": "turbo type:tests"
},
"dependencies": {
"@changesets/changelog-github": "^0.4.5",
"@changesets/cli": "^2.22.0",
"@types/jest": "^28.1.6",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"cross-env": "^7.0.3",
"esbuild-jest": "0.5.0",
"esbuild-register": "^3.3.2",
"ioredis": "^4.28.2",
"jest": "^28.1.3",
"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.20221111.1",
"esbuild": "0.16.3",
"patch-package": "^6.5.1",
"turbo": "^1.10.12"
},
"engines": {
"node": ">=16.13.0"
},
"volta": {
"node": "16.13.0"
}
}