forked from aragon/app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.88 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@aragon/app",
"description": "Web application to interact with Aragon OSx",
"version": "0.1.0",
"private": true,
"author": "Aragon Association",
"license": "GPL-3.0",
"scripts": {
"dev": "vite --host",
"dev:watch": "cross-env WATCH=true vite --host",
"build": "tsc && cross-env NODE_ENV=production node --max_old_space_size=16384 ./node_modules/vite/bin/vite.js build --sourcemap true > build.txt",
"serve": "vite preview",
"prepbrotli": "brotli-cli compress --glob \"dist/assets/*.*\"",
"servebrotli": "caddy run",
"serve:docker": "vite --host --port 5000",
"test": "jest --coverage=false",
"lint": "eslint src --max-warnings=0 && yarn check-types",
"lint:fix": "eslint src --fix",
"check-types": "tsc --noemit",
"e2e": "env-cmd -f .env npx synpress run --configFile synpress.config.js",
"e2e:reset": "cd tests/e2e && cpx default/runContext.json ."
},
"dependencies": {
"@apollo/client": "^3.5.8",
"@aragon/sdk-client": "^1.14.0",
"@elastic/apm-rum-react": "^2.0.0",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-dialog": "^1.0.4",
"@radix-ui/react-dropdown-menu": "^2.0.5",
"@tanstack/react-query": "^4.32.1",
"@tanstack/react-query-devtools": "^4.32.1",
"@tiptap/extension-link": "^2.0.3",
"@tiptap/extension-placeholder": "^2.0.3",
"@tiptap/pm": "^2.0.3",
"@tiptap/react": "^2.0.3",
"@tiptap/starter-kit": "^2.0.3",
"@walletconnect/core": "^2.8.3",
"@walletconnect/utils": "^2.8.3",
"@walletconnect/web3wallet": "^1.8.2",
"@web3modal/ethereum": "^2.4.7",
"@web3modal/react": "^2.4.7",
"big.js": "^6.2.1",
"date-fns": "^2.28.0",
"date-fns-tz": "^2.0.0",
"dotenv": "^16.1.3",
"ethers": "^5.7.2",
"file-saver": "^2.0.5",
"framer-motion": "^5.2.1",
"graphql": "^16.8.1",
"graphql-request": "^4.3.0",
"i18next": "^23.5.1",
"numeral": "^2.0.6",
"react": "^18.2.0",
"react-blockies": "^1.4.1",
"react-dom": "^18.2.0",
"react-dropzone": "^11.5.1",
"react-hook-form": "^7.22.2",
"react-i18next": "^13.2.2",
"react-responsive-carousel": "^3.2.23",
"react-router-dom": "^6.0.2",
"rudder-sdk-js": "^2.20.0",
"sanitize-html": "^2.10.0",
"styled-components": "^6.0.8",
"use-react-router-breadcrumbs": "^3.0.1",
"viem": "^1.4.2",
"wagmi": "^1.3.9"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@synthetixio/synpress": "^3.5.1",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@types/big.js": "^6.1.5",
"@types/file-saver": "^2.0.5",
"@types/jest": "^29.5.5",
"@types/node": "^16.18.11",
"@types/numeral": "^2.0.2",
"@types/react": "^18.2.23",
"@types/react-blockies": "^1.4.1",
"@types/react-dom": "^18.2.8",
"@types/react-router-dom": "^5.3.2",
"@types/sanitize-html": "^2.9.0",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"@vitejs/plugin-react": "^4.0.4",
"@walletconnect/types": "^2.9.0",
"autoprefixer": "^10.3.1",
"babel-jest": "^29.7.0",
"babel-preset-vite": "^1.0.4",
"cross-env": "^7.0.3",
"cypress": "^13.2.0",
"env-cmd": "^10.1.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-tailwindcss": "^3.13.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"rollup-plugin-analyzer": "^4.0.0",
"tailwindcss": "^3.3.3",
"tailwindcss-fluid-type": "^2.0.3",
"typescript": "^5.1.3",
"vite": "^4.4.8",
"vite-tsconfig-paths": "^4.2.0"
},
"engines": {
"node": ">=16.0.0"
}
}