-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.81 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.81 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": "quality-attribute-dsl",
"version": "2.0.0",
"description": "A Domain-Specific Language (DSL) IDE for defining and validating quality attributes based on ISO 25010 standards.",
"type": "module",
"main": "dist/index.js",
"scripts": {
"dev": "vite",
"server": "node server.js",
"dev:full": "concurrently \"npm run server\" \"npm run dev\"",
"build": "tsc -p config && vite build && node fix-assets.js",
"preview": "vite preview",
"lint": "eslint . --ext .ts,.tsx --fix",
"lint:check": "eslint . --ext .ts,.tsx",
"format": "prettier --write .",
"format:check": "prettier --check .",
"type-check": "tsc -p config --noEmit",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"clean": "rimraf dist"
},
"keywords": [
"dsl",
"quality-attributes",
"iso-25010",
"parser",
"validation",
"requirements",
"ide",
"typescript",
"visualization"
],
"author": "Quality Attribute DSL Team",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8.59.1",
"@typescript-eslint/parser": "^8.59.1",
"@vitejs/plugin-legacy": "^8.0.1",
"@vitest/coverage-v8": "^4.1.5",
"@vitest/ui": "^4.1.5",
"concurrently": "^9.2.1",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.0.0",
"jsdom": "^23.0.0",
"jspdf": "^4.2.1",
"prettier": "^3.0.0",
"rimraf": "^5.0.0",
"svg2pdf.js": "^2.7.0",
"typescript": "^5.0.0",
"vite": "^8.0.10",
"vitest": "^4.1.5"
},
"dependencies": {
"cors": "^2.8.6",
"express": "^5.2.1",
"jszip": "^3.10.1",
"lit": "^3.0.0",
"puppeteer": "^24.43.1"
},
"files": [
"dist/**/*",
"README.md",
"docs/**/*"
]
}