-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
82 lines (82 loc) · 2.28 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
79
80
81
82
{
"name": "aragonette",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --check .; echo 'To write the changes: bun run format:fix'",
"format:fix": "prettier -w . --list-different",
"deploy-dao": "bun ./scripts/deploy.ts",
"prepare": "husky",
"test": "bun test"
},
"lint-staged": {
"*.{js, jsx,ts,tsx}": [
"eslint --quiet --fix"
],
"*.{json,js,ts,jsx,tsx,html}": [
"prettier --write --ignore-unknown"
]
},
"dependencies": {
"@aragon/ods": "1.0.44",
"@hookform/resolvers": "^3.9.0",
"@react-native-async-storage/async-storage": "^1.24.0",
"@shazow/whatsabi": "^0.14.1",
"@tanstack/query-async-storage-persister": "^5.52.0",
"@tanstack/query-sync-storage-persister": "^5.52.0",
"@tanstack/react-query": "^5.52.0",
"@tanstack/react-query-persist-client": "^5.52.0",
"@web3modal/wagmi": "^4.2.3",
"classnames": "^2.5.1",
"dayjs": "^1.11.13",
"dompurify": "^3.1.6",
"libsodium-wrappers": "^0.7.15",
"multiformats": "^13.2.2",
"next": "14.1.4",
"react": "18.2.0",
"react-blockies": "^1.4.1",
"react-dom": "18.2.0",
"react-hook-form": "^7.52.1",
"viem": "^2.19.8",
"wagmi": "2.12.7"
},
"devDependencies": {
"@aragon/osx-commons-configs": "^0.2.0",
"@types/bun": "latest",
"@types/dompurify": "^3.0.5",
"@types/node": "^20.11.30",
"@types/react": "^18.3.4",
"@types/libsodium-wrappers": "^0.7.14",
"@types/react-blockies": "^1.4.4",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "latest",
"autoprefixer": "^10.4.19",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-next": "14.1.4",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.13",
"tailwindcss": "^3.4.10",
"typescript": "^5.4.3"
},
"prettier": {
"printWidth": 120,
"semi": true,
"singleQuote": false,
"trailingComma": "es5",
"tabWidth": 2,
"arrowParens": "always",
"useTabs": false,
"plugins": [
"prettier-plugin-tailwindcss"
]
}
}