-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.61 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
{
"name": "sushi-chat",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/KoukiNAGATA/sushi-chat.git",
"author": "",
"license": "MIT",
"private": true,
"scripts": {
"dev": "run-p dev:*",
"dev:front": "yarn workspace sushi-chat-front dev",
"dev:server": "yarn workspace sushi-chat-server dev",
"dev:shared": "yarn workspace sushi-chat-shared dev",
"build:server": "yarn workspace sushi-chat-server build",
"build:shared": "yarn workspace sushi-chat-shared build",
"start:server": "yarn workspace sushi-chat-server start",
"lint": "yarn workspaces run lint",
"lint:front": "yarn workspace sushi-chat-front lint",
"lint:server": "yarn workspace sushi-chat-server lint",
"lint:shared": "yarn workspace sushi-chat-shared lint",
"fix": "yarn workspaces run fix",
"fix:front": "yarn workspace sushi-chat-front fix",
"fix:server": "yarn workspace sushi-chat-server fix",
"fix:shared": "yarn workspace sushi-chat-shared fix",
"fix:dry-run": "yarn workspaces run fix:dry-run",
"fix:dry-run:front": "yarn workspace sushi-chat-front fix:dry-run",
"fix:dry-run:server": "yarn workspace sushi-chat-server fix:dry-run",
"fix:dry-run:shared": "yarn workspace sushi-chat-shared fix:dry-run"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"lerna": "^4.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.0",
"typescript": "^4.3.5"
},
"workspaces": [
"app/*"
],
"dependencies": {}
}