-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 751 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 751 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
{
"name": "psycho-o0o-CoShell",
"version": "0.0.1",
"scripts": {
"front:lint": "cd frontend & yarn lint",
"prepare": "husky install"
},
"dependencies": {},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"eslint": "^8.0.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"typescript": "*"
},
"lint-staged": {
"frontend/*": [
"prettier --write --ignore-unknown",
"eslint --fix"
],
"backend/*": [
"prettier --write --ignore-unknown",
"eslint --fix"
]
},
"main": "index.js",
"repository": "https://github.com/psycho-o0o/CoShell.git",
"author": "psycho-o0o <psycho-o0o@gmail.com>",
"license": "MIT"
}