-
Notifications
You must be signed in to change notification settings - Fork 201
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.1 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.1 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
{
"name": "cacheable-mono-repo",
"version": "1.0.0",
"private": true,
"description": "Cacheable Mono Repo",
"scripts": {
"test": "pnpm -r --workspace-concurrency 1 test",
"test:ci": "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": {
"@biomejs/biome": "^2.4.4",
"@faker-js/faker": "^10.3.0",
"@types/node": "^25.3.0",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/spy": "^4.0.18",
"rimraf": "^6.1.3",
"vitest": "^4.0.18",
"wrangler": "^4.68.1"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"protobufjs",
"rollup",
"sharp",
"sqlite3",
"unrs-resolver",
"workerd"
]
}
}