-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 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
{
"name": "root",
"private": true,
"scripts": {
"postinstall": "npm run bootstrap",
"setup:dev": "npm run bootstrap && npm run build",
"setup:web": "cd web-packages/output-components-vue & npm i & cd ..",
"bootstrap": "lerna bootstrap --hoist --no-ci",
"clean": "lerna clean",
"build": "lerna exec npm run build --ignore @jovotech/e2e-output",
"prettier": "lerna exec npm run prettier --ignore @jovotech/output-components-*",
"eslint": "lerna exec npm run eslint --ignore @jovotech/output-components-*",
"rimraf": "lerna exec npm run rimraf --ignore @jovotech/output-components-* --ignore @jovotech/e2e-output",
"test": "lerna exec npm run test --ignore @jovotech/output-components-*",
"version": "node scripts/update-peer-dependencies.js",
"preparePublish": "npm run bootstrap && npm run rimraf && npm run prettier && npm run eslint && npm run build && npm run test",
"updateVersions": "lerna version --no-push",
"publishPackages": "lerna publish from-package --no-push",
"doPublish": "npm run updateVersions && npm run publishPackages"
},
"author": "jovotech",
"license": "Apache-2.0",
"devDependencies": {
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.1",
"lerna": "^4.0.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3"
}
}