-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 902 Bytes
/
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
{
"name": "elevate",
"version": "0.0.1",
"main": "index.js",
"repository": "https://github.com/AsafKaravani/elevate.git",
"author": "Assaf Koren <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"lint": "eslint --fix --ext .js,.jsx,.ts,.tsx .",
"prepare": "husky install"
},
"workspaces": [
"services/*",
"packages/*"
],
"devDependencies": {
"@stylistic/eslint-plugin-js": "^1.2.0",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^5.0.1",
"eslint": "^8.7.0",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"typescript": "^4.4.4"
},
"dependencies": {
"eslint-config-prettier": "^9.0.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix"
}
}