-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.12 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
{
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"name": "icp_dex",
"scripts": {
"build": "npm run build --workspaces --if-present",
"prebuild": "npm run prebuild --workspaces --if-present",
"pretest": "npm run prebuild --workspaces --if-present",
"start": "npm start --workspaces --if-present",
"test": "npm test --workspaces --if-present",
"did-backend": "scripts/generate_did.sh",
"did-pool": "scripts/dex_pool_generate.sh",
"deploy": "dfx deploy icp_dex_backend && dfx deploy icp_dex_frontend",
"deploy-backend": "dfx deploy icp_dex_backend",
"deploy-frontend": "dfx deploy icp_dex_frontend"
},
"type": "module",
"workspaces": [
"src/icp_dex_frontend"
],
"dependencies": {
"@dfinity/auth-client": "^1.3.0",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@heroicons/react": "^2.1.3",
"@mui/icons-material": "^5.15.13",
"@mui/material": "^5.15.15",
"@reduxjs/toolkit": "^2.2.3",
"flowbite-react": "^0.9.0",
"lucide-react": "^0.368.0",
"nanoid": "^5.0.7",
"react-icons": "^5.1.0",
"react-redux": "^9.1.1"
}
}