-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
144 lines (144 loc) · 4.55 KB
/
package.json
File metadata and controls
144 lines (144 loc) · 4.55 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "solana-svm-p2p-exchange",
"version": "1.0.0",
"description": "A peer-to-peer cryptocurrency exchange platform for trading across Solana Virtual Machine networks (Solana, Sonic, Eclipse, svmBNB, and s00n).",
"private": true,
"sideEffects": [
"*.css",
"*.scss",
"*.sass",
"src/styles/**/*",
"public/**/*"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postinstall": "echo 'Dependency installation completed successfully'",
"netlify-build": "npm install --legacy-peer-deps && next build --no-lint",
"test": "jest",
"test:e2e": "jest --config jest-e2e.config.js",
"test:e2e:debug": "DEBUG=true jest --config jest-e2e.config.js",
"test:e2e:docker": "docker-compose -f docker-compose.test.yml up --build",
"test:e2e:ci": "./run-e2e-tests.sh --env ci",
"test:e2e:all": "./run-e2e-tests.sh --env local && ./run-e2e-tests.sh --env docker",
"analyze-bundle": "./scripts/analyze-bundle.sh",
"analyze-bundle-visual": "ANALYZE=true npm run build",
"performance": "npm run build && npm run analyze-bundle",
"test:anchor": "anchor test --skip-local-validator",
"test:security": "npx ts-mocha -p ./tsconfig.test.json -t 1000000 tests/security_audit_tests.ts --reporter spec",
"test:unit": "npx ts-mocha -p ./tsconfig.test.json -t 1000000 tests/unit_tests.ts --reporter spec",
"test:integration": "npx ts-mocha -p ./tsconfig.test.json -t 1000000 tests/integration_tests.ts --reporter spec",
"test:comprehensive": "./scripts/run_comprehensive_tests.sh",
"audit:security": "npm run test:security && npm run test:unit && npm run test:integration"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openSVM/svmp2p.git"
},
"keywords": [
"solana",
"svm",
"p2p",
"exchange",
"blockchain",
"crypto"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/openSVM/svmp2p/issues"
},
"homepage": "https://github.com/openSVM/svmp2p#readme",
"dependencies": {
"@coral-xyz/anchor": "0.31.1",
"@coral-xyz/anchor-cli": "^0.31.2",
"@noble/curves": "^1.9.6",
"@noble/hashes": "^1.3.3",
"@project-serum/anchor": "^0.26.0",
"@solana/spl-token": "^0.1.8",
"@solana/wallet-adapter-base": "^0.9.27",
"@solana/wallet-adapter-phantom": "^0.9.28",
"@solana/wallet-adapter-react": "^0.15.39",
"@solana/wallet-adapter-react-ui": "^0.9.39",
"@solana/wallet-adapter-wallets": "^0.19.37",
"@solana/web3.js": "1.98.4",
"ajv": "^8.17.1",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"chart.js": "^4.5.0",
"crypto-browserify": "^3.12.1",
"fastestsmallesttextencoderdecoder": "^1.0.22",
"https-browserify": "^1.0.0",
"i18next": "^25.2.1",
"next": "15.4.6",
"next-i18next": "^15.4.2",
"process": "^0.11.10",
"react": "19.1.1",
"react-chartjs-2": "^5.3.0",
"react-dom": "19.1.1",
"react-i18next": "^15.5.2",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"typescript": "5.9.2",
"url": "^0.11.4",
"web-vitals": "5.1.0"
},
"devDependencies": {
"@babel/core": "^7.27.4",
"@babel/plugin-transform-runtime": "^7.27.4",
"@babel/preset-env": "^7.27.2",
"@babel/preset-react": "^7.27.1",
"@babel/runtime": "^7.27.6",
"@next/bundle-analyzer": "^15.5.2",
"@tailwindcss/postcss": "^4.1.10",
"@tailwindcss/typography": "^0.5.16",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "6.6.4",
"@testing-library/react": "16.3.0",
"@testing-library/user-event": "14.6.1",
"autoprefixer": "^10.4.21",
"eslint": "^9.28.0",
"eslint-config-next": "15.4.6",
"identity-obj-proxy": "^3.0.0",
"jest": "^30.0.0",
"jest-environment-jsdom": "^30.0.0",
"jest-puppeteer": "^11.0.0",
"postcss": "^8.5.5",
"puppeteer": "^24.10.0",
"tailwindcss": "^4.1.10",
"tailwindcss-animate": "^1.0.7",
"webpack": "^5.99.9",
"webpack-bundle-analyzer": "^4.10.2"
},
"eslintConfig": {
"extends": "next/core-web-vitals"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": ">=18.17.0"
},
"resolutions": {
"typescript": "5.9.2",
"react": "19.1.1",
"react-dom": "19.1.1",
"bs58": "4.0.1"
},
"overrides": {
"typescript": "5.9.2",
"react": "19.1.1",
"react-dom": "19.1.1"
}
}