-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.23 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.23 KB
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
{
"name": "wallet-dashboard",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=\"development\" next dev",
"build": "cross-env NODE_ENV=\"production\" next build",
"start": "next start",
"lint": "eslint --max-warnings=0 . && pnpm run prettier:check",
"prettier:check": "prettier -c --ignore-unknown --ignore-path=../../.prettierignore --ignore-path=.prettierignore .",
"prettier:fix": "prettier -w --ignore-unknown --ignore-path=../../.prettierignore --ignore-path=.prettierignore .",
"test": "jest",
"ampli": "ampli",
"pull-amplitude": "ampli pull web && node prependLicense.mjs && prettier -w ampli.json lib/utils/analytics/ampli/index.ts",
"prepare:e2e": "pnpm -w wallet build && pnpm -w wallet-dashboard build",
"playwright": "playwright",
"playwright:debug": "PWDEBUG=1 playwright"
},
"engines": {
"node": ">= 24"
},
"dependencies": {
"@amplitude/analytics-browser": "^2.32.2",
"@iota/apps-backend-client": "workspace:*",
"@iota/apps-ui-icons": "workspace:*",
"@iota/apps-ui-kit": "workspace:*",
"@iota/core": "workspace:*",
"@iota/dapp-kit": "workspace:*",
"@iota/iota-names-sdk": "workspace:^",
"@iota/iota-sdk": "workspace:*",
"@iota/wallet-standard": "workspace:*",
"@sentry/nextjs": "^10.40.0",
"@tanstack/react-query": "^5.50.1",
"bignumber.js": "^9.1.1",
"clsx": "^2.1.1",
"formik": "^2.4.2",
"next": "^15.5.18",
"react": "^18.3.1",
"react-error-boundary": "^4.0.10",
"zustand": "^4.4.1"
},
"devDependencies": {
"@amplitude/ampli": "^1.36.2",
"@amplitude/analytics-types": "^2.11.0",
"@playwright/test": "^1.56.1",
"@tanstack/react-query-devtools": "^5.58.0",
"@types/jest": "^29.5.2",
"@types/node": "^24.0.0",
"@types/react": "^18.3.3",
"cross-env": "^7.0.3",
"eslint": "^8.45.0",
"eslint-config-next": "14.2.3",
"jest": "^29.5.0",
"postcss": "^8.4.31",
"tailwindcss": "^3.3.3",
"ts-jest": "^29.1.0",
"typescript": "^5.5.3"
}
}