-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.18 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.18 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
{
"name": "examples",
"version": "4.3.28",
"description": "Composable application example",
"type": "module",
"engines": {
"node": ">= 20.18.1"
},
"license": "Apache-2.0",
"files": [
"dist/**/*"
],
"scripts": {
"clean": "node clean.js && node placeholder.js",
"preload": "node preloader.js",
"prebuild": "npm run lint",
"build": "npm run preload && tsc -p tsconfig.json && node copy-resource-files.js",
"build:watch": "tsc -w -p tsconfig.json",
"lint": "eslint . --fix",
"test": "vitest run",
"test:watch": "vitest"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"@vitest/coverage-v8": "^3.1.4",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"prettier": "^3.5.3",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "~5.8.2",
"typescript-eslint": "^8.31.1",
"glob": "^12.0.0",
"vite": "^6.4.2",
"vitest": "^3.1.4"
},
"overrides": {
"test-exclude": {
"glob": "^12.0.0"
}
},
"dependencies": {
"mercury-composable": "github:Accenture/mercury-nodejs"
}
}