-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.55 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.55 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": "kateglo2",
"version": "2.0.0",
"description": "Kateglo - Kamus, Tesaurus, dan Glosarium Bahasa Indonesia (Versi 2)",
"private": true,
"workspaces": [
"backend",
"frontend"
],
"scripts": {
"start": "npm run sim:production:start",
"dev": "concurrently \"npm run dev --prefix backend\" \"npm run dev --prefix frontend\"",
"dev:ssr": "npm run dev --prefix backend",
"sim:production": "npm run build:ssr --prefix frontend && npm run start:production --prefix backend",
"sim:production:build": "npm run build:ssr --prefix frontend",
"sim:production:start": "npm run start:production --prefix backend",
"dev:backend": "npm run dev --prefix backend",
"dev:public": "npm run dev --prefix frontend",
"build": "npm run build --prefix frontend",
"build:ssr": "npm run build:ssr --prefix frontend",
"build:backend": "node -e \"console.log('Backend tidak memerlukan langkah build')\"",
"build:public": "npm run build --prefix frontend",
"test": "node -e \"console.error(['Jangan jalankan tes dari root workspace.','Gunakan salah satu perintah berikut:','- npm run test --prefix backend','- npm run test --prefix frontend','- npm run test:all'].join('\\n')); process.exit(1)\"",
"test:all": "npm run test --prefix backend && npm run test --prefix frontend",
"lint": "npm run lint --prefix backend && npm run lint --prefix frontend"
},
"devDependencies": {
"concurrently": "^9.2.1"
},
"engines": {
"node": "22.x",
"npm": ">=9.0.0"
},
"author": "Ivan Lanin",
"license": "GPL-3.0"
}