-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.86 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.86 KB
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
{
"name": "@freckle/react-hooks",
"version": "7.0.0",
"description": "React hooks used at Freckle",
"main": "dist/index.js",
"scripts": {
"build": "tsc -d",
"dev": "watch 'yarn run build' src",
"test": "jest",
"test:watch": "yarn run test -- --watch",
"lint": "eslint src --cache",
"format": "prettier --write 'src/**/*.(ts|tsx)'",
"check-git-clean": "./check-git-clean.sh"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-transform-runtime"
]
},
"repository": "git@github.com:freckle/react-hooks.git",
"author": "Freckle",
"license": "MIT",
"peerDependencies": {
"react": ">= 16.14.0"
},
"devDependencies": {
"@babel/cli": "^7.28.6",
"@babel/core": "^7.29.0",
"@babel/plugin-transform-runtime": "^7.29.0",
"@babel/preset-env": "^7.29.2",
"@babel/preset-react": "^7.28.5",
"@eslint/js": "^9.39.4",
"@testing-library/react": "^15.0.7",
"@types/invariant": "^2.2.37",
"@types/jest": "^27.5.2",
"@types/lodash": "^4.17.24",
"@types/react": "^18.3.28",
"@types/react-dom": "^18.3.7",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.57.2",
"eslint": "^9.39.4",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-testing-library": "^7.16.1",
"jest": "^27.5.1",
"prettier": "^3.8.1",
"ts-jest": "^27.1.5",
"typescript": "^4.9.5",
"watch": "^1.0.2"
},
"dependencies": {
"@babel/runtime": "^7.29.2",
"invariant": "^2.2.4",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}