-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.53 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
{
"name": "voice-tag",
"version": "1.0.0",
"license": "MIT",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"dev": "run-p dev:*",
"dev:front": "yarn workspace front dev",
"dev:server": "yarn workspace server dev",
"build": "run-p build:*",
"build:front": "yarn workspace front build",
"build:server": "yarn workspace server build",
"start": "run-p dev:*",
"start:front": "yarn workspace front start",
"start:server": "yarn workspace server start",
"lint": "run-p lint:*",
"lint:front": "yarn workspace front lint",
"lint:server": "yarn workspace server lint",
"type-check": "run-p type-check:*",
"type-check:front": "yarn workspace front type-check",
"type-check:server": "yarn workspace front type-check",
"format": "run-p format:*",
"format:front": "yarn workspace front format",
"format:server": "yarn workspace server format",
"fix": "run-p fix:*",
"fix:front": "yarn workspace front fix",
"fix:server": "yarn workspace server fix",
"doc-gen": "yarn redoc-cli bundle -o ./docs/reference/voice-tag-api.html ./docs/reference/voice-tag-api.yaml"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"redoc-cli": "^0.13.0",
"typescript": "^4.4.4"
},
"engines": {
"node": "14.x",
"npm": "use_yarn_instead"
}
}