-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 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
49
50
51
52
53
{
"name": "rawdicch.io",
"version": "0.0.1",
"private": true,
"type": "module",
"license": "GNU GPLv3",
"keywords": [
"Electron",
"Nodemon",
"Prisma",
"React",
"Tailwind CSS",
"Typescript",
"Webpack"
],
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "eslint . --fix --format=codeframe",
"new": "plop",
"postinstall": "husky install",
"start:app": "yarn workspace app start"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-formatter-codeframe": "^7.32.1",
"eslint-import-resolver-node": "^0.3.6",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.2",
"plop": "^3.1.1",
"prettier": "2.7.1",
"typescript": "^4.7.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"*.{json,md,yaml,yml}": [
"prettier --write"
]
},
"packageManager": "[email protected]"
}