-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.13 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
{
"private": true,
"version": "0.1.0",
"name": "@adamquadmon/gatsby-themes",
"description": "My open-source collection of free Gatsby themes",
"author": "Luciano Amodio <gatsby@lucianoamodio.it> (@adamquadmon)",
"workspaces": [
"examples/*",
"projects/*",
"themes/*",
"scripts/"
],
"scripts": {
"lint": "eslint . --ignore-path .gitignore --ignore-path .prettierignore --ext .js",
"lint:fix": "yarn lint --fix",
"lint:ci": "yarn lint --format junit -o results/eslint/result.xml",
"format": "prettier \"**/*.{md,mdx,json,yaml}\" --write",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "changeset publish"
},
"devDependencies": {
"eslint": "^8.11.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.3",
"eslint-plugin-react-hooks": "^4.3.0",
"prettier": "^2.5.1"
},
"dependencies": {
"@changesets/changelog-github": "^0.4.3",
"@changesets/cli": "^2.21.1"
}
}