-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 940 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 940 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
30
31
{
"name": "life-cofounder",
"version": "1.0.0",
"private": true,
"type": "module",
"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",
"start": "npm run start --workspace=server",
"lint": "eslint server/ client/src/",
"lint:fix": "eslint --fix server/ client/src/",
"test": "node --test server/tests/*.test.js",
"health": "curl http://localhost:3001/health | jq",
"docker:build": "docker build -t pulse .",
"docker:run": "docker-compose up"
},
"workspaces": [
"client",
"server"
],
"devDependencies": {
"@eslint/js": "^9.39.4",
"concurrently": "^9.1.2",
"eslint": "^9.39.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^17.4.0"
}
}