-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.37 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.37 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
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"private": true,
"license": "MIT",
"author": {
"name": "Atanas Stoyanov",
"email": "atanasster@gmail.com",
"url": "https://github.com/ccontrols"
},
"homepage": "https://github.com/ccontrols/component-controls",
"bugs": {
"url": "https://github.com/ccontrols/component-controls/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/ccontrols/component-controls.git"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"clean": "lerna clean --yes && rm -rf node_modules",
"docs": "lerna run docs && api-readme",
"packages": "yarn fix && yarn lint && yarn build && yarn test",
"fix": "lerna run --parallel fix && echo",
"startup": "yarn bootstrap && yarn build && yarn dev",
"lint": "lerna run --parallel lint",
"build": "lerna run build",
"test:create": "lerna run test:create --stream",
"test": "lerna run test --stream",
"prerelease": "yarn run packages",
"release": "lerna publish --conventional-commits --yes",
"release:next": "yarn run packages && lerna publish --conventional-commits --conventional-prerelease --dist-tag=next --exact",
"promote:next": "lerna publish --conventional-commits --conventional-graduate",
"release:beta": "yarn release --dist-tag=beta --preid=beta",
"release:canary": "yarn release --force-publish=\"*\" --canary --exact --npm-client npm",
"precommit": "lint-staged",
"commit": "git-cz",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"dev": "lerna run --parallel dev",
"examples": "lerna run build-sample"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md,mdx}": [
"yarn packages",
"git add"
]
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/helper-call-delegate": "^7.8.7",
"@babel/preset-env": "^7.14.2",
"@babel/preset-typescript": "^7.13.0",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@commitlint/config-lerna-scopes": "^11.0.0",
"@structured-types/api-readme": "^3.41.0",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-image": "^2.0.5",
"@rollup/plugin-json": "^4.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@types/fs-extra": "^8.0.0",
"@types/jest": "^26.0.10",
"@types/node": "^17.0.4",
"all-contributors-cli": "^6.8.0",
"autoprefixer": "^9.7.4",
"babel-loader": "^8.2.2",
"babel-preset-react-app": "^10.0.0",
"commitizen": "^3.1.2",
"cross-env": "^5.2.0",
"eslint": "^7.31.0",
"@typescript-eslint/parser": "^4.28.4",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-mdx": "^1.14.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^3.0.0",
"jest": "^26.4.2",
"lerna": "^3.22.1",
"lint-staged": "^9.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"rollup": "^2.3.2",
"rollup-plugin-typescript2": "^0.27.0",
"segfault-handler": "^1.3.0",
"trash-cli": "^3.0.0",
"ts-jest": "^26.5.5",
"ts-node": "^10.4.0",
"typescript": "^4.2.4"
},
"workspaces": {
"packages": [
"core/*",
"integrations/*",
"misc/*",
"plugins/*",
"props-info/*",
"search/*",
"ui/*",
"examples/*"
]
},
"dependencies": {}
}