-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.81 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
56
57
58
59
60
61
62
63
{
"name": "bd7",
"version": "1.0.0",
"description": "BD7",
"author": "techtrainingcamp-frontend-7",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --fix --ext .js,.jsx,.ts,.tsx .",
"reset": "lerna clean --yes && rm -rf node_modules",
"postinstall": "lerna bootstrap"
},
"repository": {
"type": "git",
"url": "git+https://github.com/techtrainingcamp-frontend-7/BD7.git"
},
"keywords": [],
"license": "ISC",
"bugs": {
"url": "https://github.com/techtrainingcamp-frontend-7/BD7/issues"
},
"homepage": "https://github.com/techtrainingcamp-frontend-7/BD7#readme",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/node": "14.10.1",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "4.4.1",
"chalk": "^4.1.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-standard": "14.1.1",
"eslint-config-standard-with-typescript": "19.0.1",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-standard": "4.0.1",
"husky": "^4.3.8",
"lerna": "^4.0.0",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"typescript": "4.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS || (node .scripts/pre_commit.js && exit 8)",
"post-merge": "sh .scripts/update_dependencies.sh"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,mjsx,cjs,cjsx}": [
"eslint --fix --color",
"git add"
]
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}