-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 856 Bytes
/
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": "suf-backend",
"version": "1.0.0",
"description": "Fullstack [Stack Overflow](https://stackoverflow.com/) clone (QnA site) made with MERN + GraphQL",
"private": "true",
"workspaces": [
"packages/*"
],
"scripts": {
"format": "prettier --write \"**/*.{js,jsx,json,md,ts,tsx}\"",
"server": "yarn workspace @suf-backend/server",
"start:dev": "yarn server start:dev",
"build": "yarn server build"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"concurrently": "^6.0.0",
"husky": "^5.1.3",
"prettier": "^2.2.1",
"typescript": "^4.6.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"eslint --cache --fix"
],
"*.{js,ts,jsx,tsx,json,md}": [
"prettier --write"
]
}
}