-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
76 lines (76 loc) · 2.43 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
{
"name": "@dao-dao/dapp",
"version": "2.6.0-rc.1",
"license": "AGPL-3.0-only",
"scripts": {
"postinstall": "cd ../../ && patch-package",
"analyze": "ANALYZE=true next build",
"prepare": "npm run build:worker",
"prebuild": "npm run build:worker && cd ../../packages/state && npm run build:gql",
"build": "next build --debug",
"build:worker": "tsc sw/index.ts --lib webworker --outfile public/sw.js && eslint public/sw.js --fix",
"dev": "next dev",
"format": "eslint . --fix",
"lint": "eslint .",
"prettier:write": "prettier --write .",
"start": "next start",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"test:e2e": "cp .env.testnet .env.local && playwright test",
"ts": "tsc --noEmit --incremental",
"ts:watch": "ts --watch"
},
"dependencies": {
"@dao-dao/i18n": "2.6.0-rc.1",
"@dao-dao/state": "2.6.0-rc.1",
"@dao-dao/stateful": "2.6.0-rc.1",
"@dao-dao/stateless": "2.6.0-rc.1",
"@dao-dao/types": "2.6.0-rc.1",
"@dao-dao/utils": "2.6.0-rc.1",
"@fontsource/inter": "^4.5.7",
"@fontsource/jetbrains-mono": "^4.5.5",
"@keplr-wallet/common": "^0.11.49",
"@keplr-wallet/cosmos": "^0.11.49",
"@keplr-wallet/provider": "^0.11.49",
"@keplr-wallet/types": "^0.11.49",
"@mui/icons-material": "^5.10.3",
"@sentry/nextjs": "^7.80.0",
"@tanstack/react-query": "^5.40.0",
"@types/formidable": "^2.0.5",
"cors": "^2.8.5",
"formidable": "^2.0.1",
"lodash.clonedeep": "^4.5.0",
"next": "^13.3.0",
"next-intercept-stdout": "^1.0.1",
"next-plausible": "^3.12.0",
"next-seo": "^5.4.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "7.20.4",
"react-hot-toast": "^2.1.1",
"react-i18next": "^11.0.0",
"recoil": "^0.7.2",
"sharp": "^0.31.1"
},
"devDependencies": {
"@dao-dao/config": "2.6.0-rc.1",
"@next/bundle-analyzer": "^14.1.0",
"@playwright/test": "^1.49.1",
"@sentry/cli": "^2.21.3",
"@solana/web3.js": "^1.75.0",
"@types/cors": "^2.8.13",
"@types/lodash.clonedeep": "^4.5.0",
"@types/node": "^20.14.2",
"@types/react": "^17.0.37",
"autoprefixer": "^9.8.6",
"eslint": "^8.23.1",
"eslint-plugin-header": "^3.1.1",
"next-i18next": "^11.0.0",
"postcss": "^8.4.5",
"postcss-loader": "^7.0.1",
"tailwindcss": "^3.4.1",
"typescript": "5.4.5"
},
"prettier": "@dao-dao/config/prettier",
"private": true
}