-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 838 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 838 Bytes
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
{
"name": "vaultify",
"version": "1.0.0",
"description": "Main Build Tools",
"scripts": {
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"dev": "concurrently \"cd backend && npm run dev\" \"cd frontend && npm run dev\"",
"build": "concurrently \"cd backend && npm install\" \"cd frontend && npm install\" \"npm install\"",
"start": "npm run dev",
"lint": "concurrently \"cd backend && npm run lint\" \"cd frontend && npm run lint\""
},
"author": "",
"license": "ISC",
"dependencies": {
"concurrently": "^8.2.2",
"eslint-config-prettier": "^9.1.0",
"node-cron": "^3.0.3",
"prettier": "^3.3.2",
"swiper": "^11.1.5"
},
"devDependencies": {
"@types/node-cron": "^3.0.11"
}
}