This repository has been archived by the owner on Sep 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
51 lines (51 loc) · 1.5 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
{
"private": true,
"homepage": "https://github.com/the-guild-org/the-guild-docs#readme",
"bugs": {
"url": "https://github.com/the-guild-org/the-guild-docs/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/the-guild-org/the-guild-docs.git"
},
"license": "MIT",
"scripts": {
"prerelease": "yarn build",
"release": "changeset publish",
"clean": "rimraf \"{,!(node_modules)/*/}node_modules/\"",
"prebuild": "rimraf packages/*/dist .bob/",
"build": "bob build",
"lint": "eslint --ignore-path .gitignore .",
"postbuild": "node scripts/copy-files.mjs && yarn workspace website build",
"postinstall": "husky install",
"prettier": "prettier --write --list-different ."
},
"workspaces": [
"packages/*",
"website"
],
"devDependencies": {
"@changesets/changelog-github": "0.4.6",
"@changesets/cli": "2.24.4",
"@theguild/prettier-config": "0.0.3",
"@types/node": "18.7.11",
"@types/react": "18.0.17",
"@typescript-eslint/eslint-plugin": "5.34.0",
"@typescript-eslint/parser": "5.34.0",
"bob-the-bundler": "4.0.0",
"eslint": "8.22.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-react": "7.30.1",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "8.0.1",
"patch-package": "6.4.7",
"prettier": "2.7.1",
"rimraf": "3.0.2",
"typescript": "4.7.4"
},
"engines": {
"yarn": ">=1.22.17"
}
}