-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
34 lines (34 loc) · 985 Bytes
/
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
{
"name": "root",
"private": true,
"license": "Apache-2.0",
"devDependencies": {
"@playwright/test": "^1.21.1",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^9.0.1",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"conventional-changelog-conventionalcommits": "^4.6.3",
"eslint": "^8.15.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"husky": "^8.0.1",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2",
"semantic-release": "^19.0.2",
"typescript": "^4.6.4",
"zx": "^6.1.0"
},
"scripts": {
"prettier": "prettier . --write",
"prepare": "husky install",
"dev": "pnpm --dir docs dev",
"test": "pnpm --dir docs test"
},
"lint-staged": {
"*.{md,mdx,json,css,js,jsx,ts,tsx}": "prettier --write"
}
}