forked from JodusNodus/react-qr-reader
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.5 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
57
58
59
60
{
"name": "react-qr-reader-es6",
"version": "2.2.1-2",
"description": "A react component for reading QR codes from the webcam.",
"main": "./lib/index.js",
"files": [
"lib/",
"!/lib/worker.js"
],
"scripts": {
"start": "concurrently --kill-others \"npm run build:watch\" \"npm run storybook\"",
"build": "gulp",
"build:watch": "gulp watch",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dsonet/react-qr-reader-es6.git"
},
"keywords": [
"react",
"qr",
"qrcode",
"qrreader",
"qrscanner"
],
"author": "thomas billiet",
"license": "MIT",
"bugs": {
"url": "https://github.com/JodusNodus/react-qr-reader/issues"
},
"homepage": "https://github.com/dsonet/react-qr-reader-es6#readme",
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@storybook/addon-actions": "^6.3.7",
"@storybook/addon-links": "^6.3.7",
"@storybook/addons": "^6.3.7",
"@storybook/react": "^6.3.7",
"concurrently": "^6.2.1",
"del": "^6.0.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-concat": "^2.6.1",
"gulp-inline-str": "^0.1.0",
"gulp-replace": "^1.1.3",
"gulp-uglify": "^3.0.2",
"react": ">=16",
"react-dom": ">=16"
},
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16"
},
"dependencies": {
"jsqr-es6": "^1.4.0-1",
"prop-types": "^15.7.2"
}
}