-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.73 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.73 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
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"homepage": "https://react-qr-code-reader.netlify.app/?path=/docs/qrreader-reader--docs",
"repository": {
"url": "https://github.com/JamDev0/react-qr-code-reader"
},
"name": "reactjs-qr-code-reader",
"type": "module",
"exports": {
".": {
"require": "./dist/react-qr-code-reader.cjs",
"import": "./dist/react-qr-code-reader.es.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"version": "1.0.3",
"author": {
"name": "Juan Garcia",
"email": "jamdeveloper0@gmail.com",
"url": "https://github.com/JamDev0"
},
"description": "A qr code reader react component",
"license": "MIT",
"scripts": {
"build": "npm run build:css && vite build",
"build:css": "tailwindcss -m -i ./src/styles/tailwind.css -o ./src/index.css",
"storybook": "concurrently \"npm run storybook:css\" \"storybook dev -p 6006\"",
"storybook:css": "tailwindcss -w -i ./src/styles/tailwind.css -o ./src/index.css",
"build-storybook": "concurrently \"npm run build-storybook:css\" \"storybook build\"",
"build-storybook:css": "tailwindcss -m -i ./src/styles/tailwind.css -o ./src/index.css",
"prepublishOnly": "npm run build",
"predeploy": "npm run build-storybook",
"deploy-storybook": "gh-pages -d storybook-static"
},
"dependencies": {
"@zxing/browser": "^0.1.4",
"webrtc-adapter": "^8.2.3"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@storybook/addon-essentials": "^8.0.0-alpha.15",
"@storybook/addon-interactions": "^8.0.0-alpha.15",
"@storybook/addon-links": "^8.0.0-alpha.15",
"@storybook/addon-onboarding": "^1.0.11",
"@storybook/blocks": "^8.0.0-alpha.15",
"@storybook/react": "^8.0.0-alpha.15",
"@storybook/react-vite": "^8.0.0-alpha.15",
"@storybook/test": "^8.0.0-alpha.15",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.17",
"concurrently": "^8.2.2",
"eslint": "^8.55.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"eslint-plugin-storybook": "^0.6.15",
"gh-pages": "^6.1.1",
"postcss": "^8.4.33",
"rollup-plugin-postcss": "^4.0.2",
"storybook": "^8.0.0-alpha.15",
"tailwind-merge": "^2.2.1",
"tailwindcss": "^3.4.1",
"typescript": "^5.2.2",
"vite": "^5.0.8",
"vite-plugin-dts": "^3.7.2",
"vite-plugin-libcss": "^1.1.1",
"vite-tsconfig-paths": "^4.3.1"
},
"keywords": [
"react",
"qrcode",
"qr code",
"qrcode-reader",
"qrcode-scanner",
"qr code reader",
"qr code scanner"
]
}