-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 887 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 887 Bytes
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
{
"name": "skyship",
"version": "0.1.0",
"private": true,
"workspaces": [
"apps/*"
],
"scripts": {
"dev:studio": "yarn workspace @skyship/studio start",
"dev:web": "yarn workspace @skyship/web dev",
"dev": "concurrently \"yarn dev:web\" \"yarn dev:studio\"",
"lint": "eslint --ext \".js,.ts,.tsx\" --ignore-path .gitignore . && manypkg check",
"lint:fix": "yarn lint --fix && manypkg fix",
"prettier:check": "prettier --check .",
"prettier:format": "prettier --write ."
},
"dependencies": {
"@manypkg/cli": "^0.19.1",
"concurrently": "^7.5.0",
"eslint": "8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1"
},
"repository": {
"type": "git",
"url": "https://github.com/rndy28/skyship"
},
"author": "skyship <skyship@gmail.com>",
"license": "MIT"
}