-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 3.11 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 3.11 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "dappy-apps-vite",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"deploy": "rm -rf .temp-build && mkdir -p .temp-build && tsc -b && vite build --outDir .temp-build && rm -rf dist && mv .temp-build dist",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint:check": "eslint 'src/**/*.{ts,tsx}' 'backend/src/**/*.ts' 'backend/migrations/**/*.ts' --max-warnings 0",
"lint:ui": "eslint 'src/**/*.{ts,tsx}' --max-warnings 0",
"lint:backend": "eslint 'backend/src/**/*.ts' 'backend/migrations/**/*.ts' --max-warnings 0",
"preview": "vite preview",
"backend:test": "cd backend && npm run test",
"backend:test:coverage": "cd backend && npm run test:coverage",
"backend:new": "cd backend && npm run migrate:rollback && npm run migrate && npm run seed && npm run dev",
"ui:test": "vitest run",
"ui:test:coverage": "vitest run --coverage",
"ui:test:ui": "vitest --ui",
"code:lines": "./scripts/analyze-code.sh",
"format": "prettier --write \"src/**/*.{ts,tsx}\" \"backend/src/**/*.ts\" \"backend/migrations/**/*.ts\" --config prettier.config.js",
"format:check": "prettier --check \"src/**/*.{ts,tsx}\" \"backend/src/**/*.ts\" \"backend/migrations/**/*.ts\" --config prettier.config.js",
"format:ui": "prettier --check \"src/**/*.{ts,tsx}\" --config prettier.config.js",
"format:backend": "prettier --check \"backend/src/**/*.ts\" \"backend/migrations/**/*.ts\" --config prettier.config.js",
"types:check": "tsc --noEmit --project tsconfig.json && npm run types:ui && cd backend && tsc --noEmit --project tsconfig.json",
"types:ui": "tsc --noEmit --project tsconfig.ui.json",
"check:all": "npm run lint:check && npm run format:check && npm run types:check && npm run ui:test && npm run backend:test"
},
"dependencies": {
"@dappykit/sdk": "^3.0.1",
"@reduxjs/toolkit": "^2.5.0",
"@reown/appkit": "^1.6.8",
"@reown/appkit-adapter-wagmi": "^1.6.8",
"@tanstack/react-query": "^5.66.7",
"bootstrap": "^5.3.3",
"react": "^18.3.1",
"react-bootstrap": "^2.10.9",
"react-bootstrap-icons": "^1.11.5",
"react-dom": "^18.3.1",
"react-redux": "^9.2.0",
"react-router-dom": "^7.2.0",
"viem": "^2.23.2",
"wagmi": "^2.14.11",
"web4-apps-specification": "github:DappyKit/web4-apps-specification"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.13.13",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^3.0.6",
"@vitest/ui": "^3.0.6",
"eslint": "^9.16.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"globals": "^15.12.0",
"jsdom": "^26.0.0",
"prettier": "^3.5.2",
"typescript": "~5.6.2",
"typescript-eslint": "^8.15.0",
"vite": "^6.0.1",
"vitest": "^3.0.6"
}
}