-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.2 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.2 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
{
"name": "diakem-control-center",
"version": "0.7.1",
"private": true,
"scripts": {
"build:package": "bash scripts/build-package.sh $(node -p \"require('./package.json').version\")",
"release": "dotenv -- release-it",
"release:dry": "dotenv -- release-it --dry-run",
"prepare": "husky",
"format": "npm run format --prefix backend && npm run format --prefix frontend",
"format:check": "npm run format:check --prefix backend && npm run format:check --prefix frontend",
"lint": "npm run lint --prefix backend && npm run lint --prefix frontend",
"lint:check": "npm run lint:check --prefix backend && npm run lint:check --prefix frontend"
},
"devDependencies": {
"@release-it/conventional-changelog": "^10.0.6",
"dotenv-cli": "^11.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"oxfmt": "latest",
"release-it": "^19.2.4"
},
"dependencies": {
"sharp": "^0.32.6"
},
"lint-staged": {
"backend/{src,test}/**/*.ts": [
"oxfmt --write -c .oxfmtrc.json",
"backend/node_modules/.bin/oxlint --fix"
],
"frontend/src/**/*.{ts,tsx}": [
"oxfmt --write -c .oxfmtrc.json",
"frontend/node_modules/.bin/oxlint --fix"
]
}
}