-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.4 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.4 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
41
{
"name": "science-live-platform",
"version": "0.3.0",
"private": true,
"license": "MIT",
"workspaces": [
"frontend",
"api",
"homepage",
"zotero"
],
"scripts": {
"dev": "npm run dev --workspace=frontend",
"dev:api": "npm run dev --workspace=api",
"dev:api-bun": "npm run dev-bun --workspace=api",
"build": "npm run build --workspace=frontend",
"test": "npm run test --workspaces",
"check:frontend": "npm --workspace=frontend run check",
"check:api": "npm --workspace=api run check",
"deploy:frontend": "npm --workspace=frontend run deploy",
"deploy:api": "npm --workspace=api run deploy",
"deploy": "npm run deploy:frontend && npm run deploy:api",
"pr-check": "act --artifact-server-path $(pwd)/.artifacts -W .github/workflows/monorepo-pr.yml workflow_dispatch",
"clean": "trash node_modules frontend/node_modules frontend/.wrangler frontend/dist frontend/dist-embedded-css api/node_modules api/.wrangler api/dist homepage/node_modules zotero/node_modules zotero/.scaffold zotero/dist"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@types/node": "^25.6.0",
"eslint-plugin-jsonc": "^3.1.2",
"prettier-plugin-organize-imports": "^4.3.0",
"typescript": "^6.0.2"
},
"dependencies": {
"dotenv": "^17.4.2"
},
"prettier": {
"plugins": [
"prettier-plugin-organize-imports"
]
}
}