-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.53 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "moro-examples",
"version": "1.0.0",
"description": "MoroJS Framework Examples - Comprehensive demonstrations and tutorials",
"private": true,
"scripts": {
"setup:npm": "node scripts/switch-npm.js",
"setup:local": "node scripts/switch-local.js",
"switch:npm": "node scripts/switch-npm.js",
"switch:local": "node scripts/switch-local.js",
"prepare": "husky",
"prepare:git": "node scripts/prepare-for-git.js",
"update:imports": "node scripts/update-imports.js",
"install:all": "node scripts/install-all.js",
"dev:simple-api": "npm run dev -w simple-api",
"dev:feature-showcase": "npm run dev -w feature-showcase",
"dev:enterprise-app": "npm run dev -w enterprise-app",
"dev:enterprise-events": "npm run dev -w enterprise-events",
"dev:user-service": "npm run dev -w microservice/user-service",
"dev:order-service": "npm run dev -w microservice/order-service",
"dev:payment-service": "npm run dev -w microservice/payment-service",
"dev:all": "concurrently \"npm run dev:simple-api\" \"npm run dev:feature-showcase\" \"npm run dev:enterprise-app\" \"npm run dev:enterprise-events\"",
"dev:microservices": "concurrently \"npm run dev:user-service\" \"npm run dev:order-service\" \"npm run dev:payment-service\"",
"build:all": "node scripts/build-all.js",
"test:all": "node scripts/test-all.js",
"clean:all": "node scripts/clean-all.js",
"lint": "eslint . --ext .ts,.js,.mjs",
"lint:fix": "eslint . --ext .ts,.js,.mjs --fix",
"format": "prettier --write \"**/*.{ts,js,mjs,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,js,mjs,json,md}\"",
"audit:security": "npm audit --audit-level moderate",
"check:deps": "depcheck --ignores=\"@types/*,ts-node*,typescript,concurrently\""
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@types/node": "^24.3.1",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"concurrently": "^8.2.2",
"depcheck": "^1.4.7",
"eslint": "^9.35.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.7",
"lint-staged": "^16.1.6",
"prettier": "^3.4.2",
"typescript": "^5.9.2"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"lint-staged": {
"*.{ts,js,mjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"keywords": [
"moro",
"examples",
"tutorials",
"framework",
"nodejs",
"typescript"
]
}