forked from heyitsarpit/react-hooks-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@react-hooks-library/packages",
"version": "0.6.2",
"private": true,
"description": "A collection of hooks and utilities for React",
"main": "index.js",
"author": "Arpit<https://github.com/heyitsarpit>",
"license": "MIT",
"keywords": [
"react",
"react hooks",
"@react-hooks-library"
],
"workspaces": [
"packages/*",
"website"
],
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"build:rollup": "rollup -c",
"clean": "rimraf dist packages/*/dist",
"build:full": "esno scripts/build.ts",
"publish:packages": "esno scripts/publish.ts",
"release": "esno scripts/release.ts",
"test": "jest",
"website": "yarn workspace @react-hooks-library/website",
"website:build": "yarn website build",
"website:dev": "yarn website dev",
"website:start": "yarn website start",
"website:build:routes": "yarn website build:routes",
"prepare": "husky install"
},
"devDependencies": {
"@testing-library/react-hooks": "^7.0.2",
"@types/jest": "^27.0.2",
"@types/node": "16.11.6",
"@typescript-eslint/eslint-plugin": "5.2.0",
"@typescript-eslint/parser": "5.2.0",
"bumpp": "^7.1.1",
"consola": "^2.15.3",
"esbuild-register": "^3.0.0",
"eslint": "7.32.0",
"eslint-config-next": "^12.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^25.2.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"esno": "^0.10.1",
"fast-glob": "^3.2.7",
"husky": ">=7",
"jest": "^27.3.1",
"lint-staged": ">=11",
"prettier": "2.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.58.3",
"rollup-plugin-dts": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "4.4.4"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix ."
}
}