-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.17 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 3.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "simple-directory",
"version": "8.18.0",
"description": "Easy users and organizations management for modern Web-oriented architectures.",
"type": "module",
"scripts": {
"test": "playwright test --max-failures=1",
"test-unit": "playwright test --project unit --max-failures=1",
"test-api": "playwright test --project api --max-failures=1",
"test-inproc": "playwright test --project api-inproc --max-failures=1",
"test-e2e": "playwright test --project e2e --max-failures=1",
"report": "nyc report --reporter=html",
"lint": "eslint . && npm -w ui run lint",
"lint-fix": "eslint --fix . && npm -w ui run lint-fix",
"dev-api": "npm -w api run dev",
"dev-mock-oidc": "node --experimental-strip-types dev/mock-oidc-server.ts",
"dev-ui": "npm -w ui run dev",
"dev-zellij": "dotenv -- zellij --layout .zellij.kdl",
"build-types": "mkdir -p ui/src/components/vjsf && rm -f ui/src/components/vjsf/* && df-build-types . --vjsf-dir ui/src/components/vjsf",
"prepare": "husky || true",
"check-types": "tsc && npm -w ui run check-types",
"quality": "npm run lint && npm run build-types && npm run check-types && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/koumoul-dev/simple-directory.git"
},
"workspaces": [
"ui",
"api",
"shared"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/koumoul-dev/simple-directory/issues"
},
"homepage": "https://github.com/koumoul-dev/simple-directory#readme",
"devDependencies": {
"@commitlint/config-conventional": "^19.8.1",
"@data-fair/lib-express": "^1.19.0",
"@data-fair/lib-node": "^2.12.1",
"@playwright/test": "^1.59.1",
"@reporters/bail": "^1.3.1",
"@types/accept-language-parser": "^1.5.8",
"@types/capitalize": "^2.0.2",
"@types/config": "^3.3.5",
"@types/cookie-parser": "^1.4.10",
"@types/cookies": "^0.9.2",
"@types/cors": "^2.8.19",
"@types/gm": "^1.25.4",
"@types/ldapjs": "^3.0.6",
"@types/material-colors": "^1.2.3",
"@types/memoizee": "^0.4.12",
"@types/mjml": "^4.7.4",
"@types/multer": "^1.4.13",
"@types/node": "^22.12.0",
"@types/node-cron": "^3.0.11",
"@types/nodemailer": "^6.4.23",
"@types/qrcode": "^1.5.6",
"@types/seedrandom": "^3.0.8",
"@types/serialize-javascript": "^5.0.4",
"@types/simple-oauth2": "^5.0.8",
"@types/tinycolor2": "^1.4.6",
"@types/useragent": "^2.3.4",
"commitlint": "^19.8.1",
"dotenv": "^17.3.1",
"dotenv-cli": "^11.0.0",
"eslint": "^9.10.0",
"eslint-plugin-vue": "~9.29.1",
"eslint-plugin-vuetify": "~2.5.3",
"husky": "^9.1.7",
"neostandard": "^0.11.9",
"oauth2-mock-server": "^7.2.1",
"tough-cookie": "^5.1.2",
"typescript": "~5.6.3"
},
"dependencies": {
"@data-fair/lib-types-builder": "^1.8.3",
"@koumoul/vjsf-compiler": "^1.0.2",
"@types/debug": "^4.1.13",
"@types/vue-cropperjs": "^4.1.6",
"ajv": "^8.17.1"
},
"relativeDependencies": {
"@data-fair/lib-vuetify": "../lib/packages/vuetify",
"@data-fair/lib-vue": "../lib/packages/vue",
"@data-fair/lib-common-types": "../lib/packages/common-types"
}
}