-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.94 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "root",
"private": true,
"version": "0.0.1",
"scripts": {
"bootstrap": "lerna bootstrap --hoist --force-local",
"nuke": "npx rimraf node_modules package-lock.json && npm i && lerna exec \"npx rimraf -f package-lock.json npm-shrinkwrap.json\" && lerna clean --yes && lerna bootstrap && lerna exec --stream -- \"test -f package-lock.json || npm install --package-lock-only\"",
"docz:dev": "ENV=local lerna exec --scope '@oss-rar/documentation' npm run dev",
"docz:serve": "lerna exec --scope '@oss-rar/documentation' npm run serve",
"docz:build": "npx rimraf _docs && lerna run build --scope '@oss-rar/documentation' --stream",
"test": "lerna run test:all --ignore '@oss-rar/documentation'",
"build": "lerna run build --ignore '@oss-rar/documentation'",
"publish": "lerna publish --no-verify-access from-package --contents pkg",
"publish:dryrun": "npm run publish -- --no-git-tag-version --no-push",
"version": "lerna version --conventional-commits",
"version:dryrun": "npm run version -- --no-git-tag-version --no-push",
"version:prerelease": "npm run version -- --conventional-prerelease",
"version:prerelease:dryrun": "npm run version:prerelease -- --no-git-tag-version --no-push",
"version:graduate": "npm run version -- --conventional-graduate",
"version:graduate:dryrun": "npm run version:graduate -- --no-git-tag-version --no-push",
"prebuild": "npm run copy:packages",
"copy:packages": "npx copyfiles packages/**/documentation/packages/*.mdx packages/documentation/src/packages --exclude packages/documentation --flat",
"release": "git commit -m 'chore(release): bump' --allow-empty && git push origin"
},
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.4",
"@babel/preset-typescript": "^7.8.3",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@emotion/core": "^10.0.28",
"@pika/pack": "^0.5.0",
"@pika/plugin-build-node": "^0.9.2",
"@pika/plugin-ts-standard-pkg": "^0.9.2",
"@types/jest": "^26.0.0",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^2.20.0",
"commitizen": "^4.0.3",
"copyfiles": "^2.2.0",
"cz-conventional-changelog": "^3.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^7.0.0",
"lerna": "^4.0.0",
"mdx-deck": "^4.0.0",
"prettier": "^2.0.2",
"rimraf": "^3.0.2",
"typescript": "^4.0.2"
},
"resolutions": {},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"prettier": {
"semi": false,
"useTabs": false,
"trailingComma": "none",
"singleQuote": true,
"printWidth": 120,
"tabWidth": 2
}
}