-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.56 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
{
"name": "@ottofeller/hooks",
"version": "0.5.6",
"description": "Common React hooks",
"main": "out/index.js",
"scripts": {
"build": "rollup -c && tsc",
"format": "ofmt hooks",
"lint": "ofmt --lint hooks && olint hooks",
"test": "echo \"Error: no test specified\" && exit 1",
"typecheck": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ottofeller/hooks.git"
},
"author": "https://ottofeller.com",
"license": "ISC",
"bugs": {
"url": "https://github.com/ottofeller/hooks/issues"
},
"homepage": "https://github.com/ottofeller/hooks#readme",
"dependencies": {
"axios": "0.27.2",
"intersection-observer": "0.12.0"
},
"devDependencies": {
"@ottofeller/eslint-config-ofmt": "1.3.5",
"@ottofeller/ofmt": "1.3.5",
"@ottofeller/prettier-config-ofmt": "1.3.5",
"@rollup/plugin-commonjs": "22.0.0",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "13.3.0",
"@types/react": "18.0.12",
"@types/react-dom": "18.0.5",
"react": "18.1.0",
"react-dom": "18.1.0",
"rollup": "2.75.5",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-peer-deps-external": "2.2.4",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-typescript2": "0.31.2",
"typescript": "4.7.3"
},
"peerDependencies": {
"react": "17.0.2",
"react-dom": "17.0.2"
},
"eslintConfig": {
"extends": [
"@ottofeller/eslint-config-ofmt/eslint.quality.cjs"
]
},
"prettier": "@ottofeller/prettier-config-ofmt"
}