forked from vime-js/vime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.48 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
{
"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",
"svelte": "yarn workspace @vime/svelte",
"angular": "yarn workspace @vime/angular",
"postinstall": "yarn build",
"lint": "eslint ./packages --quiet --fix --ignore-path .gitignore",
"build": "yarn core build && yarn react build && yarn vue build && yarn svelte build && yarn angular build",
"release": "lerna publish --yes"
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"eslint": "^7.8.1",
"eslint-config-airbnb-typescript": "^9.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",
"lint-staged": "^10.2.13",
"react": "^16.13.1",
"typescript": "^4.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"packages/**/*.{js,ts,tsx}": "yarn lint"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}