-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
79 lines (79 loc) · 2.47 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
{
"name": "dexter-dapp",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "cross-env ENV_FILE=.env.testnet next dev",
"dev-mainnet": "cross-env ENV_FILE=.env.mainnet next dev",
"build": "next build",
"serve-testnet": "cross-env ENV_FILE=.env.testnet npm run build && serve out",
"serve-mainnet": "cross-env ENV_FILE=.env.mainnet npm run build && serve out",
"lint": "next lint",
"test": "vitest",
"test-integration": "playwright test",
"test-all": "npm run lint && npm run test && npm run test-integration",
"copy-pr": "node ./scripts/copy-pr.js",
"fetchUsers": "node ./scripts/fetchUsers.js"
},
"dependencies": {
"@mdx-js/loader": "^3.0.0",
"@mdx-js/react": "^3.0.0",
"@next/mdx": "^14.0.3",
"@radixdlt/babylon-gateway-api-sdk": "^1.6.1",
"@radixdlt/radix-dapp-toolkit": "^2.0.0",
"@reduxjs/toolkit": "^2.0.1",
"@tailwindcss/container-queries": "^0.1.1",
"@tippyjs/react": "^4.2.6",
"@types/mdx": "^2.0.10",
"@types/node": "20.3.3",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6",
"alphadex-sdk-js": "^0.12.15",
"autoprefixer": "10.4.14",
"big.js": "^6.2.1",
"eslint-config-next": "13.4.7",
"js-cookie": "^3.0.5",
"lightweight-charts": "^4.1.3",
"next": "^14.2.10",
"papaparse": "^5.4.1",
"postcss": "^8.4.32",
"react": "^18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-countup": "^6.5.3",
"react-dom": "18.2.0",
"react-hot-toast": "^2.4.1",
"react-icons": "^4.11.0",
"react-redux": "^8.1.2",
"resize-observer-polyfill": "^1.5.1",
"tailwind-merge": "^2.4.0",
"tailwindcss": "3.3.2",
"typescript": "5.1.6"
},
"devDependencies": {
"@playwright/test": "^1.37.1",
"@tailwindcss/typography": "^0.5.9",
"@testing-library/react": "^14.2.2",
"@types/big.js": "^6.2.2",
"@types/js-cookie": "^3.0.6",
"@types/papaparse": "^5.3.14",
"@types/react-copy-to-clipboard": "^5.0.7",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"@vitejs/plugin-react": "^4.2.1",
"cross-env": "^7.0.3",
"daisyui": "^4.12.10",
"dotenv": "^16.4.5",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jsdom": "^24.0.0",
"prettier": "2.8.8",
"serve": "^14.2.3",
"tailwind-scrollbar": "^3.1.0",
"vitest": "^1.4.0"
},
"engines": {
"npm": ">=8.0.0",
"node": ">=18.0.0"
}
}