This repository was archived by the owner on May 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.49 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.49 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
{
"name": "root",
"version": "0.0.0",
"license": "MIT",
"private": true,
"scripts": {
"client:dev": "yarn workspace @botvy/client build && nodemon --spawn --cwd . --config ./nodemon.json ./packages/client/dist/index.js",
"commit": "git-cz",
"test": "lerna run test",
"lint": "eslint \"packages/**/src/**/*\"",
"publish": "lerna publish --conventional-commits"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"all-contributors-cli": "^6.14.2",
"commitizen": "^4.0.5",
"cz-conventional-changelog": "^3.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.0.0",
"husky": "^4.2.5",
"lerna": "^3.20.2",
"lint-staged": "^10.2.2",
"nodemon": "^2.0.4",
"prettier": "^2.0.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"prettier --write",
"eslint --fix",
"git add"
],
"*.{json,md}": "prettier --write"
}
}