forked from supaIC/Cipher-AI-Vault
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
24 lines (24 loc) · 948 Bytes
/
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
{
"name": "cipher_ai_vault",
"version": "1.0.0",
"scripts": {
"build": "tsc && vite build",
"serve": "vite preview",
"setup": "npm run setup-distro && npm run setup-frontend && npm run setup-data",
"setup-frontend": "cd frontend && npm run setup",
"deploy frontend": "cd frontend && npm run deploy",
"setup-distro": "cd distro-canister && npm install && npm audit fix && dfx start --clean --background && dfx deploy && dfx stop && echo 'Your project has been successfully setup!'",
"deploy-distro": "cd distro-canister && npm run reinstall",
"check-distro": "cd distro-canister && dfx canister --network ic status distro",
"setup-data": "cd data-store && npm run setup",
"build-data": "cd data-store && npm run build",
"deploy-data": "cd data-store && npm run deploy"
},
"dependencies": {
"react": "18.3.1"
},
"devDependencies": {
"typescript": "^5.2.2",
"vite": "^5.4.2"
}
}