-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 965 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 965 Bytes
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
{
"name": "@anfa/custom-hooks",
"version": "1.0.1",
"description": "",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc --project \"./tsconfig.json\"",
"lint": "eslint \"./**/*.{ts,tsx,js,jsx}\" --config=\"./.eslintrc.json\"",
"lint:fix": "eslint \"./**/*.{ts,tsx,js,jsx}\" --config=\"./.eslintrc.json\" --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andrianfaa/custom-hook-collection.git"
},
"author": "https://github.com/andrianfaa",
"license": "ISC",
"dependencies": {
"@types/react": "^18.0.35",
"react": "^18.2.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.38.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"typescript": "^5.0.4"
}
}