-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.12 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.12 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
{
"name": "brewnet",
"version": "0.0.1",
"private": true,
"type": "module",
"description": "Your Home Server, Brewed Fresh",
"license": "Apache-2.0",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"prepare": "git config core.hooksPath .githooks",
"build": "pnpm --filter @brewnet/admin-ui build && pnpm -r --filter !@brewnet/admin-ui build",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest --passWithNoTests",
"test:coverage": "NODE_OPTIONS='--experimental-vm-modules' jest --coverage --passWithNoTests",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"clean": "pnpm -r exec rm -rf dist"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"esbuild"
]
},
"devDependencies": {
"@jest/globals": "^30.2.0",
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"eslint": "^9.0.0",
"eslint-plugin-react-hooks": "^7.0.1",
"jest": "^29.7.0",
"prettier": "^3.0.0",
"ts-jest": "^29.1.0",
"typescript": "^5.5.0",
"typescript-eslint": "^8.0.0"
}
}