forked from jaredwray/cacheable
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 941 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 941 Bytes
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
{
"name": "cacheable-mono-repo",
"version": "1.0.0",
"private": true,
"description": "Cacheable Mono Repo",
"scripts": {
"test": "pnpm -r --workspace-concurrency 1 test",
"test:ci": "c8 --reporter=lcov pnpm -r --workspace-concurrency 1 test:ci",
"test:services:start": "docker compose up -d",
"test:services:stop": "docker compose down",
"website:build": "pnpm recursive --filter @cacheable/website run website:build",
"website:serve": "pnpm recursive --filter @cacheable/website run website:serve",
"build": "pnpm recursive run build",
"clean": "pnpm recursive run clean"
},
"keywords": [],
"author": "Jared Wray <me@jaredwray.com>",
"license": "MIT",
"devDependencies": {
"c8": "^10.1.3",
"vitest": "^3.1.1",
"wrangler": "^4.7.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"protobufjs",
"sharp",
"sqlite3",
"workerd"
]
}
}