forked from JodusNodus/react-qr-reader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 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
57
58
59
{
"name": "react-qr-reader",
"version": "2.2.1",
"description": "A react component for reading QR codes from the webcam.",
"main": "./lib/index.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/JodusNodus/react-qr-reader.git"
},
"keywords": [
"react",
"qr",
"qrcode",
"qrreader"
],
"author": "thomas billiet",
"license": "MIT",
"bugs": {
"url": "https://github.com/JodusNodus/react-qr-reader/issues"
},
"homepage": "https://github.com/JodusNodus/react-qr-reader#readme",
"devDependencies": {
"@storybook/addon-actions": "^3.4.11",
"@storybook/addon-links": "^3.4.11",
"@storybook/addons": "^3.4.11",
"@storybook/react": "^3.4.11",
"babel-cli": "^6.8.0",
"babel-core": "^6.26.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.5.0",
"babel-runtime": "^6.26.0",
"concurrently": "^3.6.1",
"del": "^2.2.2",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.3",
"gulp-concat": "^2.6.1",
"gulp-inline-str": "^0.1.0",
"gulp-uglify": "^2.0.0",
"react": "^16.8.3",
"react-dom": "^16.8.3"
},
"peerDependencies": {
"react": "~16",
"react-dom": "~16"
},
"dependencies": {
"jsqr": "^1.2.0",
"prop-types": "^15.7.2",
"webrtc-adapter": "^7.2.1"
}
}