-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 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
{
"name": "gatsby-theme-iterative-workspace",
"private": true,
"version": "0.0.1",
"main": "index.js",
"license": "MIT",
"scripts": {
"format": "prettier --write",
"format-check-all": "prettier --check \"**/*.{js,jsx,md,tsx,ts,json,css,yml,yaml}\"",
"format-all": "prettier --write \"**/*.{js,jsx,md,tsx,ts,json,css,yml,yaml}\"",
"lint": "eslint \"**/*.{js,jsx,ts,tsx,json}\"",
"lint-fix": "eslint --fix \"**/*.{js,jsx,ts,tsx,json}\"",
"lint-css": "stylelint \"packages/*/src/**/*.css\"",
"lint-css-fix": "stylelint --fix \"packages/*/src/**/*.css\"",
"lint-ts": "tsc --noEmit --skipLibCheck",
"fix-all": "yarn format-all && yarn lint-fix && yarn lint-css-fix && yarn lint-ts",
"clean": "yarn workspace example clean",
"build": "yarn workspace example build",
"serve": "yarn workspace example serve",
"develop": "yarn workspace example develop",
"get-commands": "yarn workspace @dvcorg/gatsby-theme-iterative get-commands",
"prepare": "husky install"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-jsx-a11y": "6.9.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "7.35.0",
"gatsby-plugin-postcss": "^6.13.1",
"husky": "8.0.3",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"stylelint": "15.11.0",
"stylelint-config-standard": "34.0.0"
}
}