-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.12 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.12 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
38
39
40
{
"name": "demo-copilot-agent-mode",
"version": "1.0.0",
"description": "OctoCAT Supply Chain Management System",
"private": true,
"workspaces": [
"api",
"frontend"
],
"scripts": {
"build": "npm run build --workspaces",
"start": "npm run start:install --workspace=api",
"dev:api": "npm run dev --workspace=api",
"dev:frontend": "npm run dev --workspace=frontend",
"db:seed": "npm run db:init --workspace=api -- --seed",
"dev": "npm run db:seed && concurrently \"npm run dev:api\" \"npm run dev:frontend\"",
"test": "npm run test --workspaces",
"test:api": "npm run test --workspace=api",
"test:frontend": "npm run test --workspace=frontend",
"lint": "npm run lint --workspace=frontend",
"prettify": "prettier --cache --write \"**/*.{ts,tsx}\""
},
"devDependencies": {
"concurrently": "^6.2.1",
"prettier": "^3.3.3"
},
"prettier": {
"singleQuote": true,
"semi": true,
"trailingComma": "all",
"printWidth": 100,
"tabWidth": 2,
"arrowParens": "always",
"endOfLine": "lf"
},
"license": "MIT",
"engines": {
"node": ">=18"
}
}