-
Notifications
You must be signed in to change notification settings - Fork 898
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·37 lines (37 loc) · 967 Bytes
/
package.json
File metadata and controls
executable file
·37 lines (37 loc) · 967 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
34
35
36
37
{
"name": "react-leaflet-repository",
"version": "1.0.0",
"private": true,
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"lint": "biome check --write ./packages",
"lint:ci": "biome ci ./packages",
"test": "turbo run test:unit",
"build": "turbo run build:clean && pnpm run -r build:types && turbo run build:js"
},
"devDependencies": {
"@biomejs/biome": "^2.0.4",
"@skypack/package-check": "^0.2.2",
"@swc/cli": "^0.7.7",
"@swc/core": "^1.12.5",
"@swc/jest": "^0.2.37",
"@testing-library/react": "^16.1.0",
"@types/jest": "^30.0.0",
"@types/leaflet": "^1.9.15",
"@types/warning": "^3.0.0",
"del-cli": "^6.0.0",
"jest": "^30.0.2",
"jest-environment-jsdom": "^30.0.2",
"leaflet": "^1.9.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"turbo": "^2.5.4",
"typescript": "^5.7.2"
},
"jest": {
"projects": [
"<rootDir>/packages/*"
]
}
}