forked from vime-js/vime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.78 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
{
"name": "vime",
"private": true,
"version": "0.0.0",
"license": "MIT",
"engines": {
"node": ">=12",
"yarn": ">=1"
},
"workspaces": [
"packages/*"
],
"scripts": {
"core": "yarn workspace @vime/core",
"react": "yarn workspace @vime/react",
"vue": "yarn workspace @vime/vue",
"vue:next": "yarn workspace @vime/vue-next",
"svelte": "yarn workspace @vime/svelte",
"angular": "yarn workspace @vime/angular",
"lint": "eslint ./packages --quiet --fix --ignore-path .gitignore",
"build": "yarn core build && yarn react build && yarn vue build && yarn vue:next build && yarn svelte build && yarn angular build",
"release": "lerna publish --yes",
"upgrade:all": "yarn upgrade && yarn upgrade --cwd \"examples/angular\" && yarn upgrade --cwd \"examples/react\" && yarn upgrade --cwd \"examples/html\" && yarn upgrade --cwd \"examples/rollup\" && yarn upgrade --cwd \"examples/stencil\" && yarn upgrade --cwd \"examples/svelte\" && yarn upgrade --cwd \"examples/vue\" && yarn upgrade --cwd \"examples/webpack\" && yarn upgrade --cwd \"docs\""
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"eslint": "^7.8.1",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"husky": "^4.2.5",
"lerna": "^3.22.1",
"react": "^17.0.0",
"typescript": "^4.0.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}