-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.07 KB
/
package.json
File metadata and controls
36 lines (36 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
36
{
"name": "oricms",
"private": true,
"version": "2.0.0",
"type": "module",
"packageManager": "npm@10",
"engines": {
"node": ">=20",
"npm": ">=10"
},
"workspaces": [
"packages/*",
"packages/adapters/*"
],
"scripts": {
"dev": "npx --yes concurrently -k -n api,web -c cyan,green \"npm run dev:api\" \"npm run dev:web\"",
"dev:web": "npm run dev -w @ori/web",
"prelint": "npm run build -w @ori/shared",
"verify": "npm run lint && npm run build:all && npm run type-check -w @ori/api && npm run db:verify-migrations -w @ori/api && npm run build:check -w @ori/web && npm run test",
"build": "npm run build -w @ori/shared && npm run build -w @ori/web",
"build:all": "npm run build --workspaces",
"test": "npm run test --workspaces",
"lint": "npm run lint --workspaces",
"dev:api": "npm run dev -w @ori/api"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.7.0",
"tsx": "^4.21.0",
"typescript": "~5.9.3",
"vitest": "^4.1.7"
},
"overrides": {
"vite": "^6.3.0",
"socket.io-parser": "^4.2.6"
}
}