-
-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathpackage.json
36 lines (36 loc) · 1.42 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
{
"private": true,
"scripts": {
"install:all": "yarn install && yarn install:backend && yarn install:frontend",
"install:backend": "cd backend && yarn install",
"install:frontend": "cd frontend && yarn install",
"start": "concurrently -k \"yarn start:backend\" \"yarn start:frontend\"",
"start:dev": "concurrently -k \"yarn start:backend:dev\" \"yarn start:frontend\"",
"start:backend": "cd backend && yarn start",
"start:backend:dev": "cd backend && yarn start:dev",
"start:frontend": "cd frontend && yarn start",
"eslint": "eslint --ext .ts --ext .tsx --color ./",
"prettier-check-ts": "prettier --check ./**/*.ts*",
"prettier-check-js": "prettier --check ./**/*.js*",
"prettier-check-yaml": "prettier --write ./**/*.yaml",
"prettier-check-yml": "prettier --write ./**/*.yml",
"prettier-ts": "prettier --write ./**/*.ts*",
"prettier-js": "prettier --write ./**/*.js*",
"prettier-yaml": "prettier --write ./**/*.yaml",
"prettier-yml": "prettier --write ./**/*.yml"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "4.30.0",
"@typescript-eslint/parser": "4.29.2",
"concurrently": "6.2.1",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.25.1",
"prettier": "2.3.2",
"typescript": "4.4.2"
},
"dependencies": {
"react-syntax-highlighter": "15.4.4"
}
}