forked from 4Catalyzer/javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 770 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 770 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
{
"private": true,
"name": "javascript",
"scripts": {
"lint": "eslint packages --ignore-path .gitignore",
"test": "npm run lint && lerna run test"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": "eslint --fix"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"devDependencies": {
"eslint": "^8.21.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"find-yarn-workspace-root": "^2.0.0",
"hookem": "^2.0.1",
"lerna": "^5.4.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1"
},
"workspaces": {
"packages": [
"packages/*"
]
}
}