-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.43 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.43 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
{
"name": "boxedo",
"version": "0.11.2",
"description": "The CMS with an attitude",
"author": "",
"license": "MIT",
"type": "module",
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=20.6.0"
},
"scripts": {
"dev": "NODE_ENV=development tsx --no-deprecation --env-file=.env packages/dev-tools/hawk.ts",
"build": "NODE_ENV=production tsx --env-file=.env packages/dev-tools/hawk.ts",
"start": "NODE_ENV=production node --env-file=.env ./packages/server/dist/app.js",
"test": "npm run test --workspaces",
"cloc": "cloc --exclude-dir=node_modules,dist,assets,data,docs,scripts,tmp --include-lang=TypeScript,JavaScript,HTML,CSS .",
"prepare": "husky",
"clean:modules": "rimraf node_modules packages/*/node_modules package-lock.json",
"clean:dist": "rimraf dist packages/*/dist",
"clean:all": "npm run clean:dist && npm run clean:modules",
"reset": "npm run clean:all && npm install",
"lint": "npm run lint --workspaces",
"postinstall": "npm run build"
},
"devDependencies": {
"@biomejs/biome": "1.9.0",
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"cloc": "^2.2.0-cloc",
"esbuild": "0.25.0",
"esbuild-plugin-inline-worker": "^0.1.1",
"husky": "^9.1.7",
"tsx": "^4.19.2",
"typescript": "^5.7.0",
"vite-tsconfig-paths": "^5.1.0",
"vitest": "^3.0.7",
"rimraf": "^6.0.1",
"boxedo-cli": "workspace:*"
}
}