-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 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
{
"name": "react-gis",
"private": true,
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean",
"clean:turbo": "rimraf .turbo && turbo run clean:turbo",
"clean:hard": "pnpm run clean && turbo run clean:hard && pnpm run clean:turbo && rimraf node_modules",
"reinstall": "pnpm run clean:hard && pnpm install",
"dev": "turbo run dev",
"format": "turbo run format --continue",
"format:fix": "turbo run format:fix --continue",
"lint": "turbo run lint --continue",
"lint:fix": "turbo run lint:fix --continue",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"test:ui": "vitest --ui",
"validate": "turbo run lint && turbo run typecheck && turbo run format && turbo run test",
"validate:build": "turbo run build && turbo run lint && turbo run typecheck && turbo run format && turbo run test",
"release": "pnpm run build && pnpm run publint && pnpm run validate && pnpm run changeset",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish",
"publint": "turbo run publint",
"typedoc": "typedoc",
"typedoc:get-entry-points": "node ./scripts/typedoc/get-entry-points.js"
},
"devDependencies": {
"@changesets/cli": "2.29.8",
"@react-gis/prettier": "workspace:*",
"@react-gis/typescript": "workspace:*",
"@tanstack/vite-config": "0.4.3",
"@types/node": "24.10.9",
"@vitest/ui": "4.0.17",
"eslint": "9.39.2",
"prettier": "3.8.1",
"publint": "0.3.17",
"rimraf": "6.1.2",
"turbo": "2.7.5",
"typedoc": "0.28.16",
"typedoc-plugin-frontmatter": "1.3.1",
"typedoc-plugin-markdown": "4.9.0",
"typescript": "5.9.3",
"vitest": "4.0.17"
},
"prettier": "@react-gis/prettier",
"packageManager": "pnpm@10.28.1",
"engines": {
"node": ">=22"
}
}