-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
100 lines (100 loc) · 3.34 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
{
"name": "@exactly/app",
"version": "0.1.0",
"type": "module",
"private": true,
"license": "BUSL-1.1",
"scripts": {
"dev": "NODE_ENV=development next dev",
"dev:e2e": "NODE_ENV=development NEXT_PUBLIC_NETWORK=10 NEXT_PUBLIC_IS_E2E=true next dev",
"test": "playwright test --project=chromium",
"build": "next build",
"build:e2e": "DISABLE_SENTRY_PLUGIN=true NEXT_PUBLIC_NETWORK=10 NEXT_PUBLIC_IS_E2E=true next build",
"start": "NODE_ENV=production next start",
"start:e2e": "bun run build:e2e && NODE_ENV=production next start",
"export": "NODE_ENV=production next export",
"prepare": "wagmi generate",
"check": "concurrently 'npm:check:*' --group -c auto",
"check:build": "next build --no-mangling",
"check:lint": "eslint --max-warnings=0 .",
"check:deps": "knip --include dependencies,binaries,unresolved,files",
"i18n:scan": "i18next-scanner --config i18next-scanner.config.cjs"
},
"engines": {
"node": "^20"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@exactly/lib": "exactly/lib#90a6d1121e3350bd2a77c474bd59bfe1b0b8dd1e",
"@exactly/protocol": "exactly/protocol#7e606d6e80e67e557b3bbee2a264520f67755f14",
"@mui/icons-material": "^5.15.14",
"@mui/lab": "^5.0.0-alpha.169",
"@mui/material": "^5.15.14",
"@sentry/integrations": "^7.107.0",
"@sentry/nextjs": "^7.107.0",
"@snapshot-labs/snapshot.js": "^0.6.4",
"@socket.tech/plugin": "^1.3.7",
"@upstash/ratelimit": "^1.0.1",
"@vercel/kv": "^0.2.4",
"@web3modal/wagmi": "^3.5.7",
"abitype": "^0.9.10",
"add-to-calendar-button": "^2.6.8",
"blockies-ts": "^1.0.0",
"dayjs": "^1.11.10",
"graphql": "^16.8.1",
"graphql-request": "^6.1.0",
"i18next": "^23.10.1",
"i18next-browser-languagedetector": "^7.2.0",
"merkletreejs": "^0.3.11",
"mixpanel-browser": "^2.49.0",
"next": "^13.5.6",
"plotly.js": "^2.30.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-draggable": "^4.4.6",
"react-i18next": "^13.5.0",
"react-number-format": "^5.3.4",
"react-plotly.js": "^2.6.0",
"react-transition-group": "^4.4.5",
"recharts": "^2.12.3",
"viem": "^1.21.4",
"wagmi": "^1.4.13"
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.1.4",
"@playwright/test": "^1.42.1",
"@sentry/cli": "^2.30.2",
"@types/eslint": "^8.56.6",
"@types/mixpanel-browser": "^2.49.0",
"@types/node": "^20.11.30",
"@types/plotly.js": "^2.29.2",
"@types/react": "^18.2.67",
"@types/react-plotly.js": "^2.6.3",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"@wagmi/cli": "^1.5.2",
"concurrently": "^8.2.2",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"i18next-scanner": "^4.4.0",
"knip": "^5.1.5",
"prettier": "^3.2.5",
"sass": "^1.72.0",
"sharp": "^0.33.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.2"
},
"trustedDependencies": [
"@exactly/lib",
"@sentry/cli"
]
}