-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.24 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
{
"private": true,
"workspaces": [
"backend",
"frontend",
"shared/**/*"
],
"scripts": {
"frontend": "yarn workspace frontend start",
"backend": "yarn workspace backend start",
"build:frontend": "yarn workspace frontend build",
"build:backend": "yarn workspace backend build",
"build": "build:backend && build:frontend",
"start": "concurrently --kill-others-on-fail \"yarn frontend\" \"yarn backend\"",
"lint": "eslint --ext .jsx,.js,.ts,.tsx .",
"lint:fix": "eslint --ext .jsx,.js,.ts,.tsx --fix .",
"security": "yarn audit"
},
"dependencies": {
"concurrently": "^6.2.0"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/eslint-parser": "^7.14.7",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"eslint": "^7.31.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "2.3.2",
"prettier-eslint": "^12.0.0",
"typescript": "^4.3.5"
}
}