forked from JorgeX/gatsby-theme-novela
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
94 lines (94 loc) · 2.16 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "gatsby-theme-novela-workspace-wa",
"version": "0.0.2",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "yarn workspace www build",
"dev": "yarn start",
"lint": "eslint --ignore-path .gitignore .",
"start": "CHOKIDAR_USEPOLLING=1 yarn workspace www develop",
"bootstrap": "yarn lerna bootstrap",
"publish": "yarn lerna version && yarn lerna publish"
},
"workspaces": [
"@narative/gatsby-theme-novela-wa",
"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-react": "^7.16.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",
"eslint:recommended",
"plugin:react/recommended"
],
"env": {
"browser": false
},
"overrides": [],
"plugins": [],
"rules": {
"import/prefer-default-export": "off",
"react/prop-types": "off",
"unicorn/no-abusive-eslint-disable": 0,
"unicorn/filename-case": [
"error",
{
"cases": {
"camelCase": true,
"kebabCase": true
}
}
]
},
"settings": {
"react": { "version": "latest" },
"import/resolver": {
"node": {
"extensions": [
".js",
".jsx",
".ts",
".tsx"
]
}
}
},
"parserOptions": {
"ecmaFeatures": {
"jsx": true,
"modules": true
}
}
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"dependencies": {
"@types/auth0-js": "^9.10.6",
"@types/theme-ui": "^0.2.4"
}
}