-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
55 lines (55 loc) · 2.28 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
{
"name": "gatsby-theme-adr-development",
"description": "Gatsby theme for a site to list ADRs",
"repository": "github:lullabot/gatsby-theme-adr",
"bugs": "https://github.com/Lullabot/gatsby-theme-adr/issues",
"private": true,
"version": "0.0.1",
"license": "MIT",
"scripts": {
"build": "yarn workspace example build",
"develop": "yarn workspace example develop",
"start": "yarn workspace example develop",
"serve": "yarn workspace example serve",
"clean": "concurrently --names \"example site,theme\" --prefix-colors \"bgBlue,bgMagenta\" \"yarn workspace example clean\" \"yarn workspace @lullabot/gatsby-theme-adr clean\"",
"test": "yarn workspace @lullabot/gatsby-theme-adr test",
"test:ci": "yarn workspace @lullabot/gatsby-theme-adr test:ci",
"telemetry:off": "concurrently --names \"example site,theme\" --prefix-colors \"bgBlue,bgMagenta\" \"yarn workspace example telemetry:off\" \"yarn workspace @lullabot/gatsby-theme-adr telemetry:off\"",
"lint": "eslint \"{**/*,*}.{js,ts,jsx,tsx,html}\"",
"lint:fix": "prettier --write \"{**/*,*}.{js,ts,jsx,tsx,json,md}\" && yarn lint --fix",
"lint:ci": "yarn lint -o reports/eslint/issues.json -f json",
"lint-staged": "lint-staged",
"commitlint": "commitlint"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.2",
"@semantic-release/npm": "^8.0.3",
"@semantic-release/release-notes-generator": "^10.0.3",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"concurrently": "^7.1.0",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.0",
"prettier": "^2.5.1",
"typescript": "^4.5.5"
}
}