-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
34 lines (34 loc) · 1.07 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
{
"name": "project-x",
"version": "0.1.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"setup": "yarn workspace @x/web build:server",
"dev": "yarn workspace @x/api dev",
"start": "yarn workspace @x/api start",
"build": "lerna run build --stream",
"migrate": "lerna run migrate --stream",
"typecheck": "lerna run typecheck --concurrency=1 --stream --no-bail",
"lint": "lerna run lint --concurrency=1 --stream --no-bail",
"lint:fix": "lerna run lint:fix --concurrency=1 --stream --no-bail",
"prettier": "prettier -cu \"**/*\"",
"prettier:fix": "yarn prettier --write",
"test": "lerna run test --concurrency=1 --stream --no-bail",
"test:coverage": "lerna run test:coverage --concurrency=1 --stream --no-bail",
"postinstall": "patch-package"
},
"dependencies": {
"passport": "^0.5.0",
"passport-github2": "^0.1.12",
"patch-package": "^6.4.7"
},
"devDependencies": {
"lerna": "^4.0.0",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.4.0",
"pretty-quick": "^3.1.1"
}
}