-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.23 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.23 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
71
72
73
{
"name": "@data-fair/events",
"version": "1.3.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"build-types": "df-build-types ./",
"dev-api": "npm -w api run dev",
"dev-deps": "mkdir -p dev/logs && docker compose up 2>&1 | tee dev/logs/docker-compose.log",
"stop-dev-deps": "docker compose stop",
"dev-ui": "npm -w ui run dev",
"dev-zellij": "dotenv -- zellij --layout .zellij.kdl",
"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": "playwright test --max-failures=1",
"check-types": "tsc && npm -w ui run check-types",
"prepare": "husky || true",
"quality": "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",
"lib-vuetify"
],
"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",
"@playwright/test": "^1.58.2",
"@types/config": "^3.3.5",
"@types/debug": "^4.1.13",
"commitlint": "^19.8.1",
"dotenv": "^17.3.1",
"dotenv-cli": "^11.0.0",
"eslint": "^9.39.4",
"eslint-plugin-vue": "^9.33.0",
"eslint-plugin-vuetify": "^2.5.1",
"husky": "^9.1.7",
"json-schema-to-typescript": "^11.0.5",
"neostandard": "^0.12.2",
"nock": "^13.5.6",
"nodemon": "^3.1.9",
"tough-cookie": "^5.1.2",
"typescript": "^5.9.3",
"ws": "^8.20.0"
},
"overrides": {
"node-forge": "1.3.2",
"axios": "1.13.5",
"tinyexec": "1.0.2"
},
"relativeDependencies": {
"@data-fair/lib-express": "../lib/packages/express",
"@data-fair/lib-vue": "../lib/packages/vue"
},
"optionalDependencies": {
"sass": "1.98.0"
}
}