-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.17 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.17 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
{
"name": "@data-fair/events",
"version": "1.2.7",
"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": "export DEV_SHELL=$(basename \"$SHELL\") && zellij --layout .zellij.kdl && rm data/zellij-deps-ready",
"dev-send-notifications": "NODE_ENV=development node --experimental-strip-types dev/scripts/send-notifications.ts",
"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.11.6"
},
"devDependencies": {
"@commitlint/config-conventional": "^19.8.1",
"@data-fair/lib-node": "^2.12.1",
"@types/config": "^3.3.5",
"@types/debug": "^4.1.13",
"commitlint": "^19.8.1",
"eslint": "^9.39.4",
"eslint-plugin-vue": "^9.33.0",
"eslint-plugin-vuetify": "github:albanm/eslint-plugin-vuetify",
"husky": "^9.1.7",
"json-schema-to-typescript": "^11.0.5",
"neostandard": "^0.12.2",
"nock": "^13.5.6",
"tough-cookie": "^5.1.2",
"typescript": "^5.9.3"
},
"overrides": {
"node-forge": "1.3.2",
"axios": "1.13.5"
},
"relativeDependencies": {
"@data-fair/lib-express": "../lib/packages/express",
"@data-fair/lib-vue": "../lib/packages/vue"
}
}