-
Notifications
You must be signed in to change notification settings - Fork 79
/
Copy pathpackage.json
35 lines (35 loc) · 1.05 KB
/
package.json
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
{
"name": "light-client-extension-helpers-dapp",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
"dependencies": {
"@picocss/pico": "^2.0.6",
"@polkadot-api/observable-client": "~0.8.0",
"@polkadot-api/substrate-client": "~0.3.0",
"@substrate/connect-known-chains": "workspace:*",
"@substrate/light-client-extension-helpers": "workspace:*",
"react": "^18.3.1",
"react-dom": "^18.2.0",
"rxjs": "^7.8.1"
},
"devDependencies": {
"typescript": "5.6.2",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.27.0",
"@typescript-eslint/parser": "^7.11.0",
"@vitejs/plugin-react-swc": "^3.7.2",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.18",
"vite": "^6.0.9",
"vitest": "^2.1.9"
}
}