-
Notifications
You must be signed in to change notification settings - Fork 176
/
Copy pathpackage.json
71 lines (71 loc) · 2.18 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "polkadot-staking-dashboard",
"version": "1.0.0",
"type": "module",
"license": "GPL-3.0-only",
"scripts": {
"clear": "npm run --workspaces clear && rm -rf build dist tsconfig.tsbuildinfo",
"dev": "cd packages/app && yarn dev",
"lint": "eslint './**' --fix && npx prettier --write . && npm run lint --workspaces --if-present",
"preview": "cd packages/app && yarn preview",
"reset": "npm run clear && rm -rf node_modules yarn.lock && yarn",
"test": "npm run test --workspaces --if-present"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@ledgerhq/logs": "^6.12.0",
"@types/chroma-js": "^2.4.5",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.2.25",
"@types/react-helmet": "^6.1.11",
"@typescript-eslint/parser": "^8.19.0",
"@vitejs/plugin-react-swc": "^3.7.0",
"@w3ux/types": "^1.0.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prefer-arrow-functions": "^3.4.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-unused-imports": "^4.1.4",
"globals": "^15.13.0",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"sass": "1.77.6",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0",
"vite": "^6.0.2"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@tanstack/react-query": "^5.62.15",
"@w3ux/hooks": "^1.4.0",
"@w3ux/utils": "^1.2.0",
"bignumber.js": "^9.1.2",
"classnames": "^2.5.1",
"date-fns": "^4.1.0",
"framer-motion": "^11.11.1",
"i18next": "^24.2.0",
"react": "^18.3.1",
"react-error-boundary": "^4.0.13",
"react-i18next": "^15.4.0"
},
"packageManager": "yarn@4.1.1",
"prettier": {
"arrowParens": "always",
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"endOfLine": "auto",
"plugins": [
"prettier-plugin-organize-imports"
]
},
"workspaces": [
"packages/*"
]
}