-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 3.37 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 3.37 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "names-dapp",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "cross-env BUILD_ENV=\"development\" next dev -p 3005",
"build": "next build",
"start": "next start -p 3005",
"test": "vitest",
"test:ui": "vitest --ui",
"test:e2e": "playwright test",
"playwright:install": "playwright install --with-deps chromium",
"prettier:check": "prettier -c --ignore-unknown --ignore-path=../.prettierignore --ignore-path=.prettierignore .",
"prettier:fix": "prettier -w --ignore-unknown --ignore-path=../.prettierignore --ignore-path=.prettierignore .",
"eslint:check": "eslint --max-warnings=0 .",
"eslint:fix": "pnpm run eslint:check --fix",
"lint": "pnpm run eslint:check && pnpm run prettier:check",
"lint:fix": "pnpm run eslint:fix && pnpm run prettier:fix",
"pull-amplitude": "ampli pull web && node prependLicense.mjs && prettier -w ampli.json src/lib/utils/analytics/ampli/index.ts",
"inject-localnet": "node scripts/injectLocalnetConfig.mjs"
},
"dependencies": {
"@amplitude/analytics-browser": "^2.32.2",
"@amplitude/analytics-client-common": "^2.4.18",
"@amplitude/analytics-core": "^2.34.1",
"@amplitude/analytics-types": "^2.11.0",
"@amplitude/engagement-browser": "^1.0.6",
"@amplitude/plugin-session-replay-browser": "^1.25.10",
"@iota/apps-backend-client": "workspace:*",
"@iota/apps-ui-icons": "workspace:*",
"@iota/apps-ui-kit": "workspace:*",
"@iota/core": "workspace:*",
"@iota/dapp-kit": "workspace:*",
"@iota/graphql-transport": "workspace:*",
"@iota/iota-names-sdk": "workspace:*",
"@iota/iota-sdk": "workspace:*",
"@iota/kiosk": "workspace:*",
"@next/mdx": "^15.5.0",
"@noble/hashes": "^1.4.0",
"@sentry/nextjs": "^10.40.0",
"@tanstack/react-query": "^5.50.1",
"bignumber.js": "^9.1.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cross-env": "^7.0.3",
"lottie-react": "^2.4.1",
"next": "^15.5.21",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.4.1",
"swiper": "^11.2.10",
"zod": "^3.25.76",
"zustand": "^4.4.1"
},
"devDependencies": {
"@amplitude/ampli": "^1.36.2",
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@playwright/test": "^1.60.0",
"@tanstack/eslint-plugin-query": "^5.35.6",
"@types/mdx": "^2.0.13",
"@types/node": "^24.0.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"dotenv": "^16.4.5",
"eslint": "^8.45.0",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-require-extensions": "^0.1.3",
"eslint-plugin-tsdoc": "^0.2.17",
"eslint-plugin-unused-imports": "^3.2.0",
"postcss": "^8.4.31",
"tailwindcss": "^3.3.3",
"typescript": "^5.5.3",
"vitest": "^4.1.0"
}
}