forked from airbnb/javascript
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
53 lines (53 loc) · 1.61 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
49
50
51
52
53
{
"name": "tsjs",
"version": "5.0.1",
"description": "A mostly reasonable approach to TypeScript and JavaScript.",
"scripts": {
"test": "node -e 'console.log(\"No script added yet, add one.\");'",
"lintfix": "prettier --write --config prettier-config.js \"*.{js,json,md}\" && eslint --fix -c ./eslint-config.js"
},
"repository": {
"type": "git",
"url": "https://github.com/coveo/tsjs.git"
},
"license": "MIT",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.3.3",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^3.0.0",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-order": "^6.0.3",
"stylelint-prettier": "^4.0.2"
},
"peerDependencies": {
"prettier": "^3.0.1",
"stylelint": "^15.10.2"
},
"devDependencies": {
"husky": "^4.2.5",
"lint-staged": "^13.2.3",
"prettier": "^3.0.1",
"stylelint": "15.10.2",
"typescript": "^4.9"
},
"prettier": "./prettier-config.js",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,md}": [
"prettier --write",
"git add"
]
}
}