-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.32 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
29
30
31
32
33
34
35
36
{
"name": "certinova",
"version": "1.0.0",
"description": "CertiNova - Bulk Certificate Generation Platform",
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "cd certinova-backend && npm run dev",
"dev:frontend": "cd certinova-frontend && npm run dev",
"build": "npm run build:frontend",
"build:frontend": "cd certinova-frontend && npm run build",
"build:backend": "cd certinova-backend && npm run build",
"start": "npm run start:frontend",
"start:frontend": "cd certinova-frontend && npm run start",
"start:backend": "cd certinova-backend && npm run start",
"install:all": "npm install && cd certinova-frontend && npm install && cd ../certinova-backend && npm install",
"lint": "cd certinova-frontend && npm run lint",
"prepare": "husky",
"precommit": "bash .husky/pre-commit",
"check:backend": "cd certinova-backend && npm run check",
"check:frontend": "cd certinova-frontend && npm run check",
"check:all": "npm run check:backend && npm run check:frontend"
},
"devDependencies": {
"concurrently": "^8.2.2",
"husky": "^9.1.7"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/12fahed/CertiNova.git"
},
"author": "fahed-khan",
"license": "ISC"
}