-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.26 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.26 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
37
{
"name": "wellab-platform",
"version": "1.0.0",
"private": true,
"description": "WELLab AI-Enabled Research & Impact Platform",
"workspaces": [
"src/frontend",
"src/backend"
],
"scripts": {
"dev": "npm run dev --workspaces --if-present",
"build": "npm run build --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"test:coverage": "npm run test --workspaces --if-present -- --coverage",
"api:dev": "npm run dev --workspace=src/backend",
"deploy:staging": "echo 'Deploying to staging...' && npm run build",
"deploy:prod": "echo 'Deploying to production...' && npm run build",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"format": "prettier --write 'src/**/*.{ts,tsx,json,css}'",
"type-check": "tsc --noEmit",
"audit": "npm audit && pip-audit -r requirements.txt",
"clean": "rm -rf dist coverage src/frontend/dist src/backend/dist .pytest_cache htmlcov"
},
"devDependencies": {
"typescript": "~5.9.3",
"eslint": "8.57.0",
"@typescript-eslint/eslint-plugin": "7.8.0",
"@typescript-eslint/parser": "7.8.0",
"eslint-plugin-react": "7.34.1",
"eslint-plugin-react-hooks": "4.6.2",
"prettier": "3.2.0"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
}
}