-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.78 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
{
"name": "mytalk",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:yoshihiko99/mytalk.git",
"author": "yuta <eypc.ofun@gmail.com>",
"license": "MIT",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"front": "yarn workspace frontend",
"back": "yarn workspace backend",
"lint:fix": "yarn prettier:fix && yarn eslint:fix",
"lint:check": "yarn prettier:check && yarn eslint:check",
"eslint:fix": "eslint --max-warnings 0 --cache --cache-location ./node_modules/.cache/eslint --ignore-path .gitignore --fix .",
"prettier:fix": "prettier --cache --ignore-path .gitignore --write .",
"postinstall": "husky install"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.33.1",
"eslint": "8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-array-func": "^3.1.7",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-no-use-extend-native": "^0.5.0",
"eslint-plugin-optimize-regex": "^1.2.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-regexp": "^1.9.0",
"eslint-plugin-security": "^1.5.0",
"eslint-plugin-sonarjs": "^0.15.0",
"eslint-plugin-switch-case": "^1.1.2",
"eslint-plugin-tailwindcss": "^3.6.2",
"eslint-plugin-unused-imports": "^2.0.0",
"eslint-import-resolver-typescript": "3.4.1",
"eslint-plugin-no-constructor-bind": "^2.0.4",
"eslint-plugin-only-warn": "^1.0.3",
"eslint-plugin-sort-class-members": "^1.14.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "2.7.1"
}
}