-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.42 KB
/
package.json
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
42
43
44
45
46
47
48
49
50
51
52
{
"engines": {
"node": ">=22 <23"
},
"engineStrict": true,
"name": "@fumix/fu-blog",
"version": "0.2.4",
"workspaces": [
"common",
"client",
"server",
"portal"
],
"scripts": {
"build": "npx lerna run build",
"clean": "ts-node scripts/clean-all.ts",
"check-packages": "ts-node scripts/check-packages.ts",
"generate-ca": "node certs/generate.mjs",
"lint": "npx lerna run lint",
"lintfix": "npx lerna run lintfix",
"prepare-start": "npm run generate-ca && docker compose up -d",
"start": "npm run prepare-start && concurrently -c yellow,blue,red -n portal,client,server \"npm start --workspace portal\" \"npm start --workspace client\" \"npm start --workspace server\"",
"test": "npx lerna run test"
},
"devDependencies": {
"@types/multer": "^1.4.7",
"@types/node": "^22.5.4",
"concurrently": "^9.0.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-unused-imports": "^3.2.0",
"json-source-map": "0.6.1",
"lerna": "^8.1.7",
"npm-run-all": "4.1.5",
"prettier": "^3.3.2"
},
"author": "fumiX GmbH & Co KG",
"bugs": {
"url": "https://github.com/fumiX/fuBlog/issues"
},
"homepage": "https://github.com/fumiX/fuBlog#readme",
"keywords": [
"blog",
"nodejs",
"express",
"typescript"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/fumiX/fuBlog.git"
}
}