-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
35 lines (35 loc) · 919 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": "playbook-project",
"private": true,
"scripts": {
"start-dev": "yarn nf start",
"prepare": "husky install",
"lint": "eslint . --ext .js,.jsx,.tsx,.ts",
"lint-fix": "eslint . --ext .js,.jsx,.tsx,.ts --fix"
},
"workspaces": {
"packages": [
"playbook",
"playbook-website"
]
},
"devDependencies": {
"@powerhome/eslint-config": "0.1.0",
"@typescript-eslint/eslint-plugin": "5.48.2",
"@typescript-eslint/parser": "4.33.0",
"babel-eslint": "10.1.0",
"eslint": "7.1.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-jsx-control-statements": "2.2.1",
"foreman": "3.0.1",
"husky": "6.0.0",
"lint-staged": "10.5.4"
},
"lint-staged": {
"*.{js,jsx,tsx,ts}": "eslint",
"*.rb": "bundle exec --gemfile=playbook-website/Gemfile rubocop --parallel"
},
"dependencies": {
"eslint-plugin-react": "^7.33.2"
}
}