-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.98 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.98 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
64
65
66
67
68
69
70
71
72
73
{
"name": "use-scraper",
"version": "1.1.0",
"description": "React hook that allow you to scrape data from a website",
"keywords": [
"scraper",
"react",
"hook",
"useScraper"
],
"homepage": "https://use-scraper.vercel.app/",
"repository": {
"type": "git",
"url": "https://github.com/Alejandroid17/useScraper.git"
},
"license": "MIT",
"author": "Alejandroid17",
"bugs": {
"url": "https://github.com/Alejandroid17/useScraper/issues"
},
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
}
},
"files": [
"dist"
],
"scripts": {
"vite:build": "vite build && npm run cp:readme",
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"storybook": "start-storybook -p 3000",
"storybook:build": "build-storybook -c .storybook -o public",
"cp:readme": "cp README.md dist/README.md",
"eslint": "eslint './**/*.{js,jsx}'"
},
"devDependencies": {
"@babel/core": "7.17.10",
"@storybook/addon-actions": "6.4.22",
"@storybook/addon-essentials": "6.4.22",
"@storybook/addon-links": "6.4.22",
"@storybook/addon-postcss": "2.0.0",
"@storybook/builder-vite": "0.1.32",
"@storybook/react": "6.4.22",
"@testing-library/react-hooks": "8.0.0",
"@vitejs/plugin-react": "1.3.1",
"autoprefixer": "10.4.5",
"babel-loader": "8.2.5",
"concurrently": "7.1.0",
"cross-env": "7.0.3",
"eslint": "8.14.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-react": "7.29.4",
"fetch-mock": "9.11.0",
"jsdom": "19.0.0",
"postcss": "8.4.13",
"postcss-cli": "9.1.0",
"postcss-import": "14.1.0",
"postcss-nesting": "10.1.4",
"prettier": "2.6.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-test-renderer": "17.0.2",
"tailwindcss": "3.0.24",
"vite": "2.9.6",
"vitest": "0.10.0"
}
}