forked from ridhwaans/homehost
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.38 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
{
"name": "homehost",
"version": "1.9.2",
"private": true,
"author": "ridhwaans",
"license": "MIT",
"scripts": {
"pre-commit-lint": "npx lint-staged",
"install-server": "npm install --prefix packages/server",
"install-client": "npm install --prefix packages/client",
"install-packages": "npm install; npm run install-server; npm run install-client",
"db:migrate": "npm run db:migrate --prefix packages/server",
"db:browse": "npm run db:browse --prefix packages/server",
"db:clear": "npm run db:clear --prefix packages/server",
"db:clear-not-available": "npm run db:clear-not-available --prefix packages/server",
"start": "concurrently --kill-others-on-fail \"npm run start:dev --prefix packages/server\" \"npm run start:dev --prefix packages/client\"",
"start:prod": "npm run start:prod --prefix packages/client; npm run start:prod --prefix packages/server",
"start:demo": "npm run start:prod --prefix packages/client; npm run start:demo --prefix packages/server"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"*.{css,html,json,js,jsx,ts,tsx,yml}": [
"prettier --write"
]
},
"devDependencies": {
"concurrently": "^7.6.0",
"eslint": "^8.35.0",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"npm-check-updates": "^16.7.10",
"prettier": "^2.8.4"
}
}