-
Notifications
You must be signed in to change notification settings - Fork 186
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.51 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.51 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
{
"name": "polkadot-staking-dashboard",
"version": "1.0.0",
"type": "module",
"license": "GPL-3.0-only",
"scripts": {
"clear": "pnpm -r --if-present clear && rm -rf build dist tsconfig.tsbuildinfo node_modules",
"dev": "cd packages/app && pnpm dev",
"check": "pnpm -r --if-present run check && stylelint '**/*.{css,scss}' --allow-empty-input",
"lint": "pnpm -r --if-present run lint && stylelint '**/*.{css,scss}' --fix --allow-empty-input",
"test": "pnpm -r --if-present test",
"license:headers": "npx @kt3k/license-checker -q"
},
"devDependencies": {
"@biomejs/biome": "^2.4.6",
"@kt3k/license-checker": "3.2.2",
"@types/chroma-js": "^3.1.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/react-helmet": "^6.1.11",
"@vitejs/plugin-react-swc": "^4.2.3",
"@w3ux/types": "^2.4.2",
"globals": "^17.4.0",
"postcss": "^8.5.8",
"postcss-scss": "^4.0.9",
"prettier": "^3.8.1",
"prettier-plugin-organize-imports": "^4.1.0",
"sass": "^1.97.3",
"stylelint": "^17.4.0",
"stylelint-config-standard-scss": "^17.0.0",
"stylelint-order": "^8.0.0",
"typescript": "^5.7.2"
},
"pnpm": {
"overrides": {
"react-helmet-async>react": "19.1.0",
"use-sync-external-store>react": "19.1.0"
},
"ignoredBuiltDependencies": [
"unrs-resolver"
],
"onlyBuiltDependencies": [
"@parcel/watcher",
"@swc/core",
"bufferutil",
"esbuild",
"keccak",
"node-hid",
"sharp",
"unrs-resolver",
"usb",
"utf-8-validate"
]
},
"packageManager": "pnpm@10.29.3"
}