-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.6 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.6 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
{
"name": "nmf-workspaces",
"private": true,
"engineStrict": true,
"engines": {
"node": ">= 18.0.0",
"npm": ">= 9.5.0"
},
"scripts": {
"clean": "shx rm -rf packages/*/lib packages/*/dist packages/*/out packages/*/*.tsbuildinfo",
"build": "tsc -b tsconfig.build.json && npm run build --workspace=nmeta-glsp-webview --workspace=nmeta-glsp-standalone --workspace=generator-nmfglsp --workspace=property-views-client --workspace=property-view --workspace=nmeta-vscode",
"watch": "concurrently -n tsc,vscode -c blue,yellow,green,green,green,green \"tsc -b tsconfig.build.json -w\" \"npm run watch --workspace=nmeta-vscode\"",
"build:clean": "npm run clean && npm run build",
"lint": "npm run lint --workspaces",
"test": "vitest",
"test-ui": "vitest --ui",
"coverage": "vitest run --coverage",
"validate-exports": "npm run validate-exports --workspace=nmeta-glsp-client",
"dev-build": "npm run dev-clean && npm install && npm link ./packages/nmeta-glsp-client && npm link ./packages/generator-nmfglsp && npm link ./packages/property-views-client && npm link ./packages/property-view",
"dev-clean": "shx rm -rf packages/**/node_modules && npm uninstall -g nmf-workspaces generator-nmfglsp nmeta-glsp-client property-views-client && npm unlink nmf-workspaces generator-nmfglsp nmeta-glsp-client property-views-client",
"reset:repo": "git clean -f -X -d"
},
"devDependencies": {
"@types/node": "~20.19.25",
"@types/vscode": "~1.67.0",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"@vitest/coverage-v8": "^1.6.0",
"@vitest/ui": "^1.6.0",
"concurrently": "~8.2.1",
"editorconfig": "~2.0.0",
"esbuild": "~0.19.2",
"eslint": "~8.56.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-no-null": "^1.0.2",
"shx": "~0.3.4",
"typescript": "~5.4.5",
"vitest": "^1.6.0",
"jsdom": "^24.1.0",
"prettier": "^3.3.1",
"start-server-and-test": "^2.0.4",
"vite": "^5.4.19",
"inversify": "^6.0.1",
"reflect-metadata": "^0.2.1",
"ts-loader": "^9.4.4",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.9.0"
},
"overrides": {
"@types/node": "~20.19.25"
},
"volta": {
"node": "20.19.25",
"npm": "10.2.4"
},
"workspaces": [
"packages/generator-nmfglsp",
"packages/nmeta-glsp-client",
"packages/nmeta-glsp-webview",
"packages/nmeta-vscode",
"packages/nmeta-glsp-standalone",
"packages/property-views-client",
"packages/property-view"
]
}