-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.1 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
{
"name": "cleomacs",
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.9.0",
"eslint": "^8.5.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-unicorn": "^40.0.0",
"husky": "^7.0.4",
"lerna": "^4.0.0",
"lint-staged": "^12.1.3",
"prettier": "^2.5.1",
"prettier-plugin-prisma": "^3.7.0",
"pretty-quick": "^3.1.3",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"prettier": {
"semi": false,
"printWidth": 100
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix",
"*.{js,ts,tsx,css,md}": "prettier --write"
},
"scripts": {
"prepare": "husky install",
"lint": "eslint --ignore-path .gitignore --ext .js,.ts,.tsx .",
"clean": "lerna run clean",
"build": "lerna run build",
"test": "yarn workspaces run test"
}
}