-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.38 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
{
"name": "connectable-frontend",
"packageManager": "[email protected]",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev:main": "yarn workspace main dev",
"build:main": "yarn workspace main build",
"start:main": "yarn workspace main start",
"lint:main": "eslint ./apps/main/src --ext .ts,.tsx,.js,.jsx --cache --fix",
"dev:admin-artist": "yarn workspace admin-artist dev",
"build:admin-artist": "yarn workspace admin-artist build",
"dev:admin-service": "yarn workspace admin-service dev",
"build:admin-service": "yarn workspace admin-service build",
"docker:up": "docker-compose up --build",
"docker:up-dev": "docker-compose -f docker-compose.dev.yml up --build",
"postinstall": "husky install"
},
"lint-staged": {
"apps/main/**/*.+(ts|tsx)": "yarn lint:main"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
}
}