-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.71 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
47
48
49
50
51
52
53
54
55
56
{
"name": "nephele-repo",
"version": "0.0.0",
"description": "A pluggable WebDAV, CardDAV, and CalDAV server for Node.js and Express.",
"type": "module",
"scripts": {
"format": "prettier --write . '!./testroot-mysql'",
"lint": "prettier --check . '!./testroot-mysql'",
"clean": "lerna run clean",
"build": "lerna run build",
"watch": "lerna run watch --concurrency=20",
"docs": "typedoc",
"prepare": "husky && npm run lint",
"postinstall": "npm run build",
"bootstrap:win": "# todo, after workspaces migrations: lerna bootstrap --ignore '@nephele/authenticator-pam' --ignore 'nephele-serve'",
"test": "lerna run test --concurrency=1 --stream --no-prefix --no-bail -- -- --passWithNoTests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sciactive/nephele.git"
},
"author": "Hunter Perrin <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/sciactive/nephele/issues"
},
"homepage": "https://github.com/sciactive/nephele#readme",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@tsconfig/recommended": "^1.0.6",
"@types/debug": "^4.1.12",
"@types/express": "^4.17.21",
"@types/xml2js": "^0.4.14",
"debug": "^4.3.5",
"express": "^4.19.2",
"husky": "^9.0.11",
"lerna": "^8.1.3",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"prettier-plugin-svelte": "^3.2.4",
"tsx": "^4.15.4",
"typedoc": "^0.25.13",
"userhomepath": "^1.0.6",
"xml2js": "^0.6.2"
},
"engines": {
"node": ">=18"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}