-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.58 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": "usable-react",
"version": "7.0.2",
"description": "Basic React hooks to get any project off the ground.",
"author": "Ian K Smith <hello@iks.codes>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/smithki/usable-react"
},
"files": [
"dist/**/*"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"sideEffects": false,
"scripts": {
"dev": "melodist dev --outdir dist",
"build": "melodist build --no-minify --outdir dist",
"lint": "eslint --fix src/**/*.ts",
"clean": "rimraf dist",
"test": "echo \"No tests to run!\"",
"test:tree-shaking": "npm run build && agadoo"
},
"peerDependencies": {
"react": "^16.11.0 || ^17.0.0 || ^18.0.0"
},
"dependencies": {
"fuse.js": "^6.4.6",
"md5": "~2.3.0"
},
"devDependencies": {
"@ikscodes/eslint-config": "~8.1.0",
"@ikscodes/prettier-config": "~2.2.0",
"@types/md5": "~2.3.2",
"@types/node": "^12.11.5",
"@types/react": "^16.9.9",
"@typescript-eslint/eslint-plugin": "~5.32.0",
"agadoo": "^2.0.0",
"auto": "~10.36.5",
"eslint": "~8.21.0",
"eslint-import-resolver-typescript": "~2.7.1",
"eslint-plugin-import": "~2.26.0",
"eslint-plugin-jsx-a11y": "~6.6.1",
"eslint-plugin-prettier": "~4.2.1",
"eslint-plugin-react": "~7.30.1",
"eslint-plugin-react-hooks": "~4.6.0",
"eslint-plugin-unused-imports": "~2.0.0",
"melodist": "~0.7.8",
"prettier": "~2.7.1",
"react": "^17.0.1",
"rimraf": "^2.6.1",
"typescript": "^4.7.4"
}
}