-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 2.35 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
50
51
52
53
54
55
56
57
{
"name": "@myscope/monorepo",
"version": "1.0.0",
"description": "Monorepo Starter Project",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"start:webapp": "yarn workspace @myscope/webapp start",
"build:webapp": "yarn workspace @myscope/webapp build",
"build:dep:webapp": "yarn build:webapp && mkdir -p dist && mv packages/webapp/build dist/webapp",
"test:webapp": "yarn workspace @myscope/webapp test",
"release:webapp": "yarn --cwd packages/webapp run standard-version",
"start:webapp-redux": "yarn workspace @myscope/webapp-redux start",
"build:webapp-redux": "yarn workspace @myscope/webapp-redux build",
"build:dep:webapp-redux": "yarn build:webapp-redux && mkdir -p dist && mv packages/webapp-redux/build dist/webapp-redux",
"test:webapp-redux": "yarn workspace @myscope/webapp-redux test",
"release:webapp-redux": "yarn --cwd packages/webapp-redux run standard-version",
"start:common": "yarn workspace @myscope/common start",
"build:common": "yarn workspace @myscope/common build",
"build:dep:common": "yarn build:common && mkdir -p dist && mv packages/common/build dist/common",
"test:common": "yarn workspace @myscope/common test",
"release:common": "yarn --cwd packages/common run standard-version",
"releaseall": "run-s \"release:* {@}\" --",
"release": "node scripts/release.js",
"clean": "rm -rf dist",
"build": "yarn clean && run-s build:dep:*",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "yarn test --silent --ci=true --coverage --coverageReporters=cobertura --coverageReporters=lcov --maxWorkers=4",
"lint": "eslint --fix packages/**/*.{ts,tsx}",
"ncu": "ncu --deep",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "13.1.0",
"@commitlint/config-conventional": "13.1.0",
"@typescript-eslint/eslint-plugin": "4.29.0",
"@typescript-eslint/parser": "4.29.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-jest": "24.4.0",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-react": "7.24.0",
"husky": "7.0.1",
"lint-staged": "11.1.2",
"msw": "0.34.0",
"npm-check-updates": "11.8.3",
"npm-run-all": "4.1.5",
"prettier": "2.3.2",
"prompts": "2.4.1",
"standard-version": "9.3.1",
"ts-node": "10.1.0"
}
}