-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.87 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.87 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@jsdevtools/create-monorepo",
"version": "0.4.5",
"description": "Skeleton monorepo",
"private": false,
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/jsdevtools/jsdevtools.git"
},
"contributors": [
{
"name": "JEStaubach",
"email": "justin@jsdevtools.com",
"url": "https://twitter.com/jsdevtool"
}
],
"scripts": {
"bs": "npx -p lerna -c \"lerna init && lerna bootstrap\"",
"clean": "shx rm -f yarn-error.log lerna-debug.log",
"clean-packages": "npx lerna clean --yes --ignore @jsdevtools/create-monorepo",
"clean-root": "npx download-cli --out bin --filename rimraf-standalone.js https://unpkg.com/rimraf-standalone/rimraf-standalone.js && node bin/rimraf-standalone.js node_modules",
"clean-node-modules": "yarn clean-packages && yarn clean-root",
"commit": "node bin/togglePrivate.js --private false && git add package.json && git-cz",
"local-publish": "lerna publish --conventional-commits --registry=\"http://localhost:4873/\" && node bin/togglePrivate.js --private true",
"prerelease": "yarn rebuild",
"release": "lerna publish --conventional-commits",
"rebuild": "lerna run clean && lerna run build",
"refresh": "yarn clean-node-modules && yarn bs && yarn rebuild",
"semver": "lerna-semver-sync",
"styleguide": "lerna run storybook --stream"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@jsdevtools/cz-lerna-changelog": "^0.1.14",
"@jsdevtools/eslint-config": "^0.1.12",
"@jsdevtools/prettier-config": "^0.1.10",
"@jsdevtools/stylelint-config": "^0.1.12",
"babel-loader": "^8.1.0",
"commitizen": "^4.0.4",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"lerna": "^4.0.0",
"lerna-semver-sync": "^1.3.1",
"prettier": "^2.0.4",
"semantic-release": "^17.0.6",
"shx": "^0.3.2",
"stylelint": "^13.3.2",
"webpack": "^4.42.1"
},
"dependencies": {
"chalk": "^4.0.0",
"commander": "^5.0.0",
"core-js": "^3.6.5",
"cross-spawn": "^7.0.2",
"fs-extra": "^9.0.0",
"validate-npm-package-name": "^3.0.0"
},
"resolutions": {},
"workspaces": [
"./",
"packages/*",
"packages/shared-components/*",
"packages/configs/*",
"packages/backends/*",
"packages/frontends/*",
"packages/services/*",
"packages/utilities/*"
],
"config": {
"commitizen": {
"path": "./node_modules/@jsdevtools/cz-lerna-changelog"
}
},
"prettier": "@jsdevtools/prettier-config",
"eslintConfig": {
"extends": "@jsdevtools/eslint-config"
},
"stylelint": {
"extends": "@jsdevtools/stylelint-config"
},
"bin": {
"create-monorepo": "./bin/cli.js"
},
"gitHead": "d86dcb5b663d0b33487f68d903a8e0549e4711ae"
}