forked from aragon/gov-app-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.76 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
83
84
85
86
87
88
89
90
91
{
"name": "aragonette",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "APP_ENV=development.local next dev --port 8080",
"build-prod-local": "NODE_ENV=production APP_ENV=production.local next build",
"build-dev-local": "NODE_ENV=production APP_ENV=development.local next build",
"build-prod": "NODE_ENV=production APP_ENV=production next build",
"build-dev": "NODE_ENV=production APP_ENV=development next build",
"lint": "next lint",
"lint:fix": "bun run lint --fix",
"format": "prettier --check .; echo 'To write the changes: bun run format:fix'",
"format:fix": "prettier -w . --list-different",
"prepare": "husky",
"test": "bun test",
"ts-check": "tsc --noEmit"
},
"lint-staged": {
"*.{js, jsx,ts,tsx}": [
"eslint --quiet --fix"
],
"*.{json,js,ts,jsx,tsx,html}": [
"prettier --write --ignore-unknown"
]
},
"dependencies": {
"@aragon/gov-ui-kit": "^1.0.57",
"@hookform/resolvers": "^3.9.1",
"@react-native-async-storage/async-storage": "^2.1.0",
"@reown/appkit": "^1.5.3",
"@reown/appkit-adapter-wagmi": "^1.5.3",
"@shazow/whatsabi": "^0.17.0",
"@tanstack/query-async-storage-persister": "^5.62.0",
"@tanstack/query-sync-storage-persister": "^5.62.0",
"@tanstack/react-query": "^5.62.0",
"@tanstack/react-query-persist-client": "^5.62.0",
"@web3-storage/w3up-client": "^16.5.2",
"classnames": "^2.5.1",
"dayjs": "^1.11.13",
"dompurify": "^3.2.2",
"libsodium-wrappers": "^0.7.15",
"multiformats": "^13.3.1",
"next": "^14.1.4",
"react": "^18.3.1",
"react-blockies": "^1.4.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.2",
"viem": "^2.21.53",
"wagmi": "^2.13.2"
},
"devDependencies": {
"@aragon/osx-commons-configs": "^0.7.0",
"@dotenvx/dotenvx": "^1.26.0",
"@types/bun": "latest",
"@types/dompurify": "^3.2.0",
"@types/libsodium-wrappers": "^0.7.14",
"@types/node": "^20.17.6",
"@types/react": "^18.3.12",
"@types/react-blockies": "^1.4.4",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "latest",
"autoprefixer": "^10.4.20",
"dotenv": "^16.4.5",
"eslint": "^8.57.1",
"eslint-config-next": "^14.1.4",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"postcss": "^8.4.49",
"prettier": "^3.4.1",
"prettier-plugin-tailwindcss": "^0.6.9",
"tailwindcss": "^3.4.15",
"typescript": "^5.7.2"
},
"prettier": {
"printWidth": 120,
"semi": true,
"singleQuote": false,
"trailingComma": "es5",
"tabWidth": 2,
"arrowParens": "always",
"useTabs": false,
"plugins": [
"prettier-plugin-tailwindcss"
]
},
"engines": {
"node": ">=20.0.0"
}
}