-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.1 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
{
"name": "spectre-decentralized-exchange",
"description": "SPECTRE Decentralized Exchange (DEX)",
"author": "Arian H",
"website": "https://spectre.arianh.ir",
"repository": "https://github.com/arianXdev/spectre-decentralized-exchange",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"typecheck": "tsc",
"seed": "tsc scripts/2_seed-exchange.cts;npx hardhat run --network localhost scripts/2_seed-exchange.cjs;rm -rf scripts/2_seed-exchange.cjs",
"deploy": "tsc scripts/*;npx hardhat run --network localhost scripts/1_deploy.cjs;npx hardhat run --network localhost scripts/2_seed-exchange.cjs;rm -rf scripts/*.cjs"
},
"dependencies": {
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@reduxjs/toolkit": "^2.1.0",
"animate.css": "^4.1.1",
"apexcharts": "^3.45.2",
"axios": "^1.6.5",
"classnames": "^2.5.1",
"clipboard-copy": "^4.0.1",
"dotenv": "^16.4.0",
"gl-mat4": "^1.2.0",
"gl-vec3": "^1.1.3",
"immer": "^10.0.3",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"react": "^18.2.0",
"react-18-blockies": "^1.0.6",
"react-apexcharts": "^1.4.1",
"react-device-detect": "^2.2.3",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
"react-redux": "^9.1.0",
"react-router-dom": "^6.21.3",
"typed.js": "^2.1.0",
"use-immer": "^0.9.0"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/lodash": "^4.14.202",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"eslint-plugin-unused-imports": "^3.0.0",
"ethers": "^6.10.0",
"hardhat": "^2.19.4",
"hardhat-jest": "^1.0.8",
"sass": "^1.70.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vite-tsconfig-paths": "^4.3.1"
}
}