-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.89 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.89 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
{
"name": "@data-fair/backup",
"version": "3.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"build-types": "df-build-types ./",
"dev-api": "npm -w api run dev",
"dev-deps": "docker compose up -d --wait",
"stop-dev-deps": "docker compose stop",
"dev-ui": "npm -w ui run dev",
"dev-zellij": "zellij --layout .zellij.kdl",
"dev-dump": "NODE_ENV=development npm -w api run dump-all",
"lint": "eslint . && npm -w ui run lint",
"lint-fix": "eslint --fix . && npm -w ui run lint-fix",
"test": "npm run test-base -- test-it/*.ts",
"test-base": "NODE_ENV=test node --experimental-strip-types --test-force-exit --test-concurrency=1 --test",
"check-types": "tsc && npm -w ui run check-types",
"prepare": "husky || true",
"quality": "npm run dev-deps && npm run lint && npm run build-types && npm run check-types && npm -w ui run build && npm run test && npm audit --omit=dev --audit-level=critical"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/data-fair/events.git"
},
"author": "",
"license": "MIT",
"workspaces": [
"ui",
"api"
],
"bugs": {
"url": "https://github.com/data-fair/events/issues"
},
"homepage": "https://github.com/data-fair/events#readme",
"dependencies": {
"@data-fair/lib-types-builder": "^1.2.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^19.2.2",
"@data-fair/lib-node": "^2.5.1",
"@types/config": "^3.3.3",
"@types/debug": "^4.1.12",
"@types/fs-extra": "^11.0.4",
"@types/memoizee": "^0.4.12",
"@types/resolve-path": "^1.4.3",
"commitlint": "^19.2.2",
"eslint": "^9.10.0",
"eslint-plugin-vue": "^9.29.0",
"eslint-plugin-vuetify": "github:albanm/eslint-plugin-vuetify",
"husky": "^9.1.6",
"json-schema-to-typescript": "^11.0.5",
"neostandard": "^0.11.5",
"typescript": "^5.5.4"
}
}