-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.07 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.07 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
{
"name": "openfamily",
"version": "1.0.5",
"description": "Application open source pour gérer la vie de famille",
"private": true,
"workspaces": [
"client",
"server",
"shared"
],
"scripts": {
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"dev:server": "cd server && npm run dev",
"dev:client": "cd client && npm run dev",
"build": "npm run build:shared && npm run build:server && npm run build:client",
"build:shared": "cd shared && npm run build",
"build:server": "cd server && npm run build",
"build:client": "cd client && npm run build",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"docker:build": "docker-compose build",
"smoke:api": "./scripts/smoke-api.sh",
"install:all": "npm install && cd client && npm install && cd ../server && npm install && cd ../shared && npm install"
},
"devDependencies": {
"concurrently": "^8.2.2"
},
"overrides": {
"serialize-javascript": "7.0.5"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
}
}