-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.25 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
38
39
40
41
42
43
44
45
46
47
48
{
"name": "@hubstairs/display-controller",
"private": true,
"version": "0.0.0",
"license": "MIT",
"homepage": "https:/www.nfinite.app",
"repository": {
"type": "git",
"url": "/~https://github.com/hubstairs/display-controller.git"
},
"author": "Guillaume HERTAULT <gh@hnfinite.com>",
"workspaces": [
"packages/*"
],
"scripts": {
"prettier:fix": "prettier --write '**/*.{js,jsx,json,md,css,scss,sh,yml,yaml,html}' --ignore-path .gitignore"
},
"devDependencies": {
"@babel/core": "^7.17.4",
"@babel/eslint-parser": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"conventional-changelog-conventionalcommits": "^4.6.3",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-compat": "^4.0.2",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^4.3.8",
"jest": "^27.5.1",
"jest-fetch-mock": "^3.0.3",
"jquery": "^3.6.0",
"lerna": "^4.0.0",
"lint-staged": "^12.3.4",
"prettier": "^2.5.1",
"whatwg-fetch": "^3.6.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,jsx,json,md,css,scss,yml,yaml,html}": [
"prettier -l"
]
}
}