-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 1.13 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
{
"name": "community-savings",
"private": true,
"scripts": {
"start": "npm run deploy:prod",
"dev": "concurrently -k -n API,WEB -c green,cyan \"npm:dev:api\" \"npm:dev:web\"",
"dev:api": "npm --prefix api run dev",
"dev:web": "npm --prefix web run dev",
"build": "npm --prefix api run build && npm --prefix web run build",
"deploy:prod": "npm run build && pm2 start ecosystem.config.js",
"start:prod": "node api/dist/server.js",
"preview:web": "npm --prefix web run preview -- --host 0.0.0.0 --port 5173",
"deploy:web": "npm --prefix web run build && npm --prefix web run preview -- --host 0.0.0.0 --port 5173",
"seed": "npm --prefix api run seed",
"create-admin": "npm --prefix api run create-admin",
"change-password": "npm --prefix api run change-password",
"import-excel": "npm --prefix api run import-excel",
"import-summary": "npm --prefix api run import-summary",
"install:all": "npm --prefix api i && npm --prefix web i && npm --prefix mobile i"
},
"devDependencies": {
"concurrently": "^8.2.2",
"dotenv": "^16.6.1"
},
"dependencies": {
"axios": "^1.13.2"
}
}