forked from vime-js/vime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.31 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
{
"name": "vime",
"private": true,
"version": "0.0.0",
"license": "MIT",
"engines": {
"node": ">=10",
"pnpm": ">=5"
},
"scripts": {
"lint": "eslint packages/*/src/**/*.{ts,tsx} packages/*/cypress/**/*.{js,ts} examples/*/src/**/*.{ts,tsx} tools/*.js scripts/*.js --fix --ignore-path .gitignore",
"script:size": "node scripts/core-dist-size.js"
},
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@stencil/eslint-plugin": "^0.3.1",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"codecov": "^3.7.2",
"eslint": "^7.5.0",
"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.3",
"eslint-plugin-react-hooks": "^4.0.8",
"git-log-parser": "^1.2.0",
"gzip-size": "^5.1.1",
"husky": "^4.2.5",
"pretty-bytes": "^5.3.0",
"react": "^16.13.1",
"semantic-release": "^17.1.1",
"typescript": "^3.9.7"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}