This repository has been archived by the owner on Nov 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
72 lines (72 loc) · 2.02 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
{
"name": "frontend",
"version": "0.1.0",
"author": {
"name": "Your-Name",
"email": "your@email.tld"
},
"private": true,
"devDependencies": {
"@types/node": "16.18.34",
"@types/react": "18.2.11",
"@types/react-dom": "18.2.4",
"@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",
"@typescript-eslint/eslint-plugin": "5.59.9",
"@typescript-eslint/parser": "5.59.9",
"postcss": "8.4.24",
"tailwindcss": "3.3.2",
"ts-jest": "^29.1.1",
"@types/jest": "29.5.2",
"ts-node": "10.9.1",
"typescript": "5.1.6",
"@playwright/test": "^1.35.0",
"playwright": "^1.35.0",
"vite": "4.3.9"
},
"dependencies": {
"@walletconnect/modal-sign-html": "^2.6.0",
"@algorandfoundation/algokit-utils": "^2.3.1",
"@blockshake/defly-connect": "^1.1.5",
"@daffiwallet/connect": "^1.0.3",
"@perawallet/connect": "^1.3.1",
"@txnlab/use-wallet": "^2.0.0",
"algosdk": "^2.3.0",
"daisyui": "3.1.0",
"notistack": "3.0.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"tslib": "2.5.3"
},
"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"
]
}
}