-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 828 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 828 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
26
27
28
29
{
"name": "zamacorps",
"version": "1.0.0",
"description": "Privacy-preserving Payroll System using Zama FHE",
"main": "index.js",
"scripts": {
"dev": "npm run dev:frontend",
"dev:frontend": "cd frontend && npm run dev",
"build": "npm run build:frontend",
"build:frontend": "cd frontend && npm run build",
"test": "npm run test:frontend && npm run test:backend",
"test:frontend": "cd frontend && npm test",
"test:backend": "cd backend && npm test",
"start": "cd backend && npm start",
"install:all": "npm install && cd frontend && npm install && cd ../backend && npm install"
},
"keywords": [
"fhe",
"privacy",
"payroll",
"zama",
"encryption"
],
"author": "Zama FHE Developer",
"license": "MIT",
"devDependencies": {
"concurrently": "^8.2.2"
}
}