-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
46 lines (46 loc) · 1.56 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
{
"name": "openapi-viewer",
"version": "2.2.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"build-types": "df-build-types ./",
"check-types": "tsc",
"dev-api": "npm -w api run dev",
"dev-deps": "docker compose --profile dev up -d --wait",
"dev-ui": "npm -w ui run dev",
"dev-zellij": "export DEV_SHELL=$(basename \"$SHELL\") && zellij --layout .zellij.kdl && rm data/zellij-deps-ready",
"lint": "eslint . && npm -w ui run lint",
"lint-fix": "eslint --fix . && npm -w ui run lint-fix",
"prepare": "husky || true",
"stop-dev-deps": "docker compose --profile dev stop",
"test": "npm run test-base test-it/*.ts",
"test-only": "NODE_ENV=test node --experimental-strip-types --test-force-exit --test-only --test-concurrency=1 --test test-it/*.ts",
"quality": "npm run lint && npm run build-types && npm run check-types && npm -w ui run build && npm audit --omit=dev --audit-level=critical"
},
"author": "",
"license": "AGPL-3.0-only",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/data-fair/openapi-viewer.git"
},
"workspaces": [
"ui",
"api"
],
"dependencies": {
"@data-fair/lib-types-builder": "^1.6.0"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@types/config": "^3.3.5",
"eslint": "^9.17.0",
"eslint-plugin-vue": "^9.32.0",
"eslint-plugin-vuetify": "github:albanm/eslint-plugin-vuetify",
"husky": "^9.1.7",
"neostandard": "^0.12.0",
"typescript": "^5.7.3"
}
}