-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 812 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 812 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
{
"name": "identity-verification-app",
"version": "1.0.0",
"description": "Secure identity verification system for credential resets",
"private": true,
"workspaces": [
"client",
"server",
"shared"
],
"scripts": {
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"dev:client": "npm run dev --workspace=client",
"dev:server": "npm run dev --workspace=server",
"build": "npm run build --workspace=client && npm run build --workspace=server",
"start": "npm run start --workspace=server",
"install:all": "npm install && npm install --workspace=client && npm install --workspace=server && npm install --workspace=shared"
},
"devDependencies": {
"concurrently": "^8.2.2"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
}
}