forked from cloudflare/templates
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.91 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.91 KB
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
{
"name": "templates",
"dependencies": {
"node-fetch": "3.3.2"
},
"devDependencies": {
"@playwright/test": "1.57.0",
"@types/node": "24.10.1",
"cli": "workspace:*",
"prettier": "3.7.4",
"syncpack": "13.0.4",
"turbo": "2.6.1",
"vitest": "4.0.14"
},
"engines": {
"node": ">=20.16.0 || >=22.3.0"
},
"packageManager": "pnpm@10.2.0",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp",
"workerd"
]
},
"scripts": {
"check": "pnpm run check:templates && pnpm run check:lockfiles && pnpm run check:turbo && pnpm run check:prettier && git diff --exit-code",
"check:deps": "syncpack lint",
"check:lockfiles": "templates lint-npm-lockfiles .",
"check:prettier": "prettier . --check",
"check:templates": "templates lint .",
"check:turbo": "turbo run check cf-typegen --force",
"deploy": "turbo run deploy",
"deploy-live-demos": "templates deploy-live-demos .",
"fix": "pnpm run fix:templates && pnpm run fix:lockfiles && pnpm run fix:turbo && pnpm run fix:prettier",
"fix:deps": "syncpack format && syncpack fix-mismatches",
"fix:lockfiles": "templates generate-npm-lockfiles .",
"fix:prettier": "prettier . --write",
"fix:templates": "templates lint . --fix",
"fix:turbo": "turbo run cf-typegen --force",
"info:deps": "templates deps-info",
"postinstall": "turbo run build && templates setup-hooks",
"preview": "templates preview",
"test": "turbo run test -- --passWithNoTests",
"test:cli": "vitest",
"test:e2e": "playwright test",
"test:e2e:codegen": "playwright codegen",
"test:e2e:live": "PLAYWRIGHT_USE_LIVE=true playwright test",
"test:e2e:ui": "playwright test --ui",
"update:deps": "templates deps-update",
"upload": "templates upload",
"validate-d2c-buttons": "templates validate-d2c-buttons",
"validate-live-demo-links": "templates validate-live-demo-links",
"validate-version-private-package-json": "templates validate-version-private-package-json"
}
}