-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.94 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
64
65
66
67
68
69
70
71
72
73
{
"name": "@signal/style-guide",
"version": "1.0.0",
"private": true,
"description": "An attempt at comprehensive global guides to working on/with/around any products that Signal touches. Heavily influcenced off the Airbnb guide.",
"keywords": [
"style guide",
"lint",
"signal",
"es6",
"es2015",
"es2016",
"es2017",
"es2018",
"react",
"jsx"
],
"homepage": "https://github.com/gosignal/signal-style-guide",
"bugs": {
"url": "https://github.com/gosignal/signal-style-guide/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/gosignal/signal-style-guide.git"
},
"license": "MIT",
"author": "William Kasel <[email protected]> (https://twitter.com/wkasel)",
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"packages/**/webpack-dev-server",
"**/babel-loader",
"**/babel-jest"
]
},
"scripts": {
"bootstrap": "lerna bootstrap --use-workspaces",
"clean": "./scripts/cleanup.sh && lerna clean && yarn cache clean",
"lint": "eslint --fix *.md",
"prettier": "prettier --write \"./packages/**/*.{js,json,md,yml}\"",
"sort-pkg": "sort-package-json \"package.json\" \"packages/*/package.json\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"packages/**/*.{js,md,yml}": [
"prettier --write",
"eslint --fix",
"sort-pkg"
]
},
"dependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-markdown": "^1.0.2",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^2.5.0",
"eslint-plugin-spellcheck": "^0.0.14",
"husky": "^4.2.3",
"lerna": "^3.20.2",
"lint-staged": "^10.0.8",
"sort-package-json": "^1.40.0"
}
}