-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.55 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
{
"name": "gatsby-theme-novela-workspace",
"private": true,
"version": "0.0.1",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "yarn workspace www build",
"dev": "yarn start",
"lint": "eslint --ignore-path .gitignore .",
"start": "yarn workspace www develop",
"bootstrap": "yarn lerna bootstrap",
"publish": "yarn lerna version && yarn lerna publish"
},
"workspaces": [
"@thirdwave/thirdwave-gatsby-theme",
"www"
],
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@commitlint/travis-cli": "^8.1.0",
"eslint": "^6.2.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-unicorn": "^10.0.0",
"husky": "^3.0.4",
"lerna": "^3.16.4",
"prettier": "^1.18.2"
},
"eslintConfig": {
"extends": [
"airbnb-base",
"plugin:prettier/recommended",
"plugin:unicorn/recommended"
],
"env": {
"browser": false
},
"overrides": [],
"plugins": [],
"rules": {
"unicorn/no-abusive-eslint-disable": 0,
"unicorn/filename-case": [
"error",
{
"cases": {
"camelCase": true,
"kebabCase": true
}
}
]
}
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
}
}