-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
43 lines (43 loc) · 1.11 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": "react-ui",
"version": "1.0.0",
"description": "",
"main": "apps/packages/index.js",
"module": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint:js": "eslint --cache \"**/*.{js,jsx,ts,tsx,md,mdx,mjs}\"",
"lint:js:fix": "eslint \"**/*.{js,jsx,ts,tsx,md,mdx,mjs}\" --fix",
"prepare": "husky install"
},
"keywords": [
"react",
"ui",
"components"
],
"author": "HassanBahati",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@types/node": "^18.11.18",
"@types/react": "^18.0.27",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"@types/react-dom": "^18.0.10",
"react": "^18.2.0",
"eslint": "^8.32.0",
"eslint-plugin-react": "^7.32.1",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"prettier": "2.8.3",
"typescript": "^4.9.4"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"peerDependencies": {
"@types/react-dom": "^18.0.10",
"react": "^18.2.0"
}
}