forked from bsoc-bitbyte/Splitt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 874 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 874 Bytes
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
{
"name": "splitt",
"private": true,
"version": "0.1.0",
"description": "A better way to share autos out of campus.",
"workspaces": [
"frontend",
"backend"
],
"scripts": {
"dev:frontend": "npm --workspace frontend run dev",
"dev:backend": "npm --workspace backend run dev",
"lint": "eslint .",
"format": "prettier --write .",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"eslint": "^9.0.0",
"eslint-plugin-react": "^7.37.5",
"husky": "^9.0.0",
"lint-staged": "^15.0.0",
"prettier": "^3.0.0"
},
"lint-staged": {
"*.{js,jsx,json,md,css}": [
"prettier --write"
],
"*.{js,jsx}": [
"eslint --fix"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}