-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.36 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
{
"name": "idol-workspaces",
"version": "0.1.0",
"private": true,
"workspaces": [
"common-types",
"frontend",
"backend",
"dti-website",
"image-cli",
"new-dti-website"
],
"scripts": {
"lint": "eslint . --ext .ts --ext .tsx",
"type-check": "yarn workspaces run tsc",
"format": "prettier '**/*.{ts,js,tsx,scss,css,html,md}' --write",
"format:check": "prettier '**/*.{ts,js,tsx,scss,css,html,md}' --check",
"test": "jest",
"build": "yarn workspaces run build"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@types/node": "^20.8.6",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"babel-jest": "^27.2.4",
"common-types": "1.0.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^6.1.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.2.4",
"lint-staged": "^11.2.0",
"prettier": "^3.2.5",
"typescript": "^5.2.2"
},
"lint-staged": {
"**/*.{ts,js,tsx,scss,css,html,md}": [
"yarn prettier --write"
]
},
"dependencies": {}
}