forked from caravan-bitcoin/caravan
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.87 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.87 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
57
58
{
"name": "caravan",
"private": true,
"engines": {
"node": ">=20.18.0 <21.0.0",
"npm": ">=10.5.0 <11.0.0"
},
"scripts": {
"preinstall": "node scripts/check-node-versions.js",
"build": "turbo build",
"build:coordinator": "turbo build --filter=caravan-coordinator",
"changeset": "changeset",
"ci": "turbo run build lint test",
"clean": "rm -rf .turbo && rm -rf **/dist && rm -rf **/build && rm -rf **/.turbo",
"dev": "turbo dev --concurrency 15",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"gen": "turbo gen run",
"lint": "turbo lint",
"test": "turbo test",
"test:ui": "turbo test:ui",
"test:watch": "turbo test:watch",
"test:debug": "turbo test:debug",
"test:e2e": "turbo run test:e2e --filter=caravan-coordinator",
"test:e2e:ui": "turbo run test:e2e:ui --filter=caravan-coordinator",
"test:e2e:headed": "turbo run test:e2e:headed --filter=caravan-coordinator",
"version": "turbo run build lint test && changeset version && npm install --package-lock-only",
"release": "turbo run build lint test && changeset publish",
"dev:coordinator": "turbo run dev --filter=caravan-coordinator",
"prepare": "husky"
},
"devDependencies": {
"@caravan/eslint-config": "*",
"@caravan/typescript-config": "*",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@vitest/coverage-istanbul": "^3.2.4",
"@vitest/ui": "^3.2.4",
"esbuild": "^0.25.3",
"esbuild-plugins-node-modules-polyfill": "^1.7.0",
"husky": "^9.1.7",
"prettier": "^3.1.1",
"tsup": "^8.0.0",
"turbo": "^2.0.3",
"vite-plugin-node-polyfills": "^0.23.0",
"vitest": "^3.2.4",
"vitest-mock-extended": "^3.1.0"
},
"overrides": {
"material-table": {
"jspdf": "2.5.1"
}
},
"packageManager": "npm@10.5.0",
"workspaces": [
"apps/*",
"packages/*"
]
}