-
Notifications
You must be signed in to change notification settings - Fork 166
/
package.json
49 lines (49 loc) · 1.65 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
{
"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"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@ledgerhq/logs": "^6.12.0",
"@types/chroma-js": "^2.4.4",
"@types/lodash.debounce": "^4.0.9",
"@types/lodash.throttle": "^4",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.2.25",
"@types/react-helmet": "^6.1.11",
"@types/react-scroll": "^1.8.10",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"@vitejs/plugin-react-swc": "^3.7.0",
"@w3ux/types": "0.2.1-beta.1",
"eslint": "8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prefer-arrow-functions": "^3.3.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-unused-imports": "3.2.0",
"prettier": "^3.3.1",
"prettier-plugin-organize-imports": "^4.0.0",
"sass": "1.77.6",
"typescript": "^5.4.3"
},
"dependencies": {
"classnames": "^2.5.1"
},
"packageManager": "yarn@4.1.1"
}