-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 2.37 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
53
54
55
56
57
58
59
60
{
"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",
"version:dependencies": "node ./scripts/update-version.js && npm install",
"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": "~16.18.41",
"@types/vscode": "~1.67.0",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "~6.4.1",
"@typescript-eslint/parser": "~6.4.1",
"@vitest/coverage-v8": "~1.0.0",
"@vitest/ui": "~1.5.0",
"concurrently": "~8.2.1",
"editorconfig": "~2.0.0",
"esbuild": "~0.19.2",
"eslint": "~8.56.0",
"eslint-plugin-header": "~3.1.1",
"shx": "~0.3.4",
"typescript": "~5.1.6",
"vitest": "~1.5.0"
},
"overrides": {
"@types/node": "~16.18.41"
},
"volta": {
"node": "18.19.1",
"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"
],
"dependencies": {
"nmf-workspaces": "file:"
}
}