-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.19 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
72
73
74
75
76
77
78
{
"name": "frontend",
"version": "0.1.0",
"author": {
"name": "Vandyck",
"email": "[email protected]"
},
"private": true,
"engines": {
"node": ">=18.0"
},
"devDependencies": {
"@playwright/test": "^1.35.0",
"@types/jest": "29.5.2",
"@types/node": "18.17.14",
"@types/react": "18.2.11",
"@types/react-dom": "18.2.4",
"@typescript-eslint/eslint-plugin": "6.5.0",
"@typescript-eslint/parser": "6.5.0",
"@vitejs/plugin-react-swc": "3.3.2",
"autoprefixer": "10.4.14",
"eslint": "8.42.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-prettier": "5.0.0",
"playwright": "^1.35.0",
"postcss": "8.4.24",
"react-router-dom": "^6.16.0",
"tailwindcss": "3.3.2",
"ts-jest": "^29.1.1",
"ts-node": "10.9.1",
"typescript": "5.1.6",
"vite": "4.4.9"
},
"dependencies": {
"@algorandfoundation/algokit-utils": "^3.0.0",
"@blockshake/defly-connect": "^1.1.6",
"@daffiwallet/connect": "^1.0.3",
"@perawallet/connect": "^1.3.1",
"@react-navigation/native": "^6.1.8",
"@react-navigation/native-stack": "^6.9.14",
"@txnlab/use-wallet": "^2.1.1",
"@walletconnect/modal-sign-html": "^2.6.1",
"algosdk": "^2.5.0",
"daisyui": "3.1.0",
"notistack": "^3.0.1",
"react": "^18.2.0",
"react-dom": "18.2.0",
"tslib": "^2.6.2"
},
"scripts": {
"generate:app-clients": "algokit generate client -o src/contracts/{contract_name}.ts ../backend",
"dev": "npm run generate:app-clients && vite",
"build": "npm run generate:app-clients && tsc && vite build",
"test": "jest --coverage --passWithNoTests",
"playwright:test": "playwright test",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0 --fix",
"preview": "vite preview"
},
"eslintConfig": {
"extends": [
"react-app/jest",
"react-app"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}