-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.52 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
{
"name": "soteria-repo",
"version": "0.0.0",
"description": "A WebDAV based personal cloud security camera system.",
"type": "module",
"scripts": {
"format": "prettier --write .",
"lint": "prettier --check .",
"clean": "lerna run clean",
"build": "lerna run build",
"watch": "lerna run watch --concurrency=20",
"prepare": "husky install && npm run lint",
"postinstall": "npm run build",
"test:webdav": "mkdir -p testroot && docker run --rm --name soteria-nephele --user \"$(id -u):$(id -g)\" -e AUTH_PASSWORD=123soteria -e AUTH_USERNAME=soteria -v ./testroot/:/data/ -p 8080:80 sciactive/nephele",
"test": "lerna run test --concurrency=1 --stream --no-prefix --no-bail -- -- --passWithNoTests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sciactive/soteria.git"
},
"author": "Hunter Perrin <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/sciactive/soteria/issues"
},
"homepage": "https://github.com/sciactive/soteria#readme",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@tsconfig/recommended": "^1.0.7",
"@types/debug": "^4.1.12",
"debug": "^4.3.6",
"husky": "^9.1.5",
"lerna": "^8.1.8",
"lint-staged": "^15.2.9",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.6"
},
"engines": {
"node": ">=18"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}