forked from rosskhanas/react-qr-code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.99 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "react-qr-code",
"version": "2.0.7",
"description": "A QR code generator for React and React Native.",
"keywords": [
"react",
"react-native",
"qr",
"code",
"generator"
],
"author": {
"name": "Ross Khanas",
"email": "[email protected]"
},
"scripts": {
"demo-web-watch": "babel ./src --out-dir=./demo/src/lib --watch",
"demo": "cd demo && yarn start",
"demo:build": "cd demo && yarn build",
"demo:deploy": "gh-pages -d demo/build",
"storybook-demo-watch": "babel ./src --out-dir=./storybooks/demo/lib --watch",
"storybook-mobile-start": "cd ./storybooks/demo && yarn start",
"storybook-ios": "cd ./storybooks/demo && yarn ios",
"storybook-android": "cd ./storybooks/demo && yarn android",
"clean": "rimraf lib",
"lint": "eslint src",
"build": "yarn clean && babel src --out-dir lib"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:rosskhanas/react-qr-code.git"
},
"files": [
"lib",
"types"
],
"main": "lib/index.js",
"types": "types/index.d.ts",
"dependencies": {
"prop-types": "^15.8.1",
"qr.js": "0.0.0"
},
"peerDependencies": {
"react": "^16.x || ^17.x || ^18.x",
"react-native-svg": "*"
},
"peerDependenciesMeta": {
"react-native-svg": {
"optional": true
}
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.10.1",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.23.0",
"eslint": "^7.30.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"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",
"gh-pages": "^3.2.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-native-svg": "^12.4.4",
"rimraf": "^3.0.2"
}
}