-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
93 lines (93 loc) · 2.95 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "qrcode",
"version": "0.0.1",
"scripts": {
"start": "webpack-dev-server --env disable-minify --open --mode development",
"build": "webpack --optimize-minimize --mode production",
"lint": "tslint --project tsconfig.json -c tslint.json 'src/**/*.{ts,tsx}'",
"lint:fix": "tslint --project tsconfig.json -c tslint.json 'src/**/*.{ts,tsx}' --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidkevork/qrcode.git"
},
"author": "David Kevork",
"license": "MIT",
"bugs": {
"url": "https://github.com/davidkevork/qrcode/issues"
},
"homepage": "https://github.com/davidkevork/qrcode#readme",
"devDependencies": {
"@types/classnames": "^2.2.8",
"@types/node": "^12.0.10",
"@types/qrcode.react": "^0.8.2",
"@types/react": "^16.8.22",
"@types/react-dom": "^16.8.4",
"@types/react-qr-reader": "^2.1.2",
"@types/react-redux": "^7.1.0",
"@types/react-router": "^5.0.2",
"@types/react-router-dom": "^4.3.4",
"@types/react-select": "^2.0.19",
"@types/redux-logger": "^3.0.7",
"@types/redux-promise": "^0.5.28",
"@types/webpack": "^4.4.33",
"@types/webpack-env": "^1.13.9",
"babel-eslint": "^10.0.2",
"compression-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "^3.0.0",
"eslint": "^6.0.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-compat": "^3.1.2",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^4.0.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"jsdom": "15.1.1",
"mini-css-extract-plugin": "^0.7.0",
"node-sass": "^4.13.1",
"postcss-preset-env": "^6.6.0",
"postcss-scss": "^2.0.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.4",
"tslint": "^5.18.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-react": "^4.0.0",
"typescript": "^3.5.2",
"uglifyjs-webpack-plugin": "^1.3.0",
"url-loader": "^2.0.0",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.14"
},
"dependencies": {
"@material-ui/core": "^4.1.2",
"@material-ui/icons": "^4.2.1",
"@material-ui/lab": "^4.0.0-alpha.17",
"classnames": "^2.2.6",
"es6-promise-promise": "^1.0.0",
"qrcode.react": "^0.9.3",
"raven-for-redux": "^1.4.0",
"raven-js": "^3.27.2",
"react": "^16.8.6",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.8.6",
"react-hot-loader": "^4.11.1",
"react-qr": "0.0.2",
"react-qr-reader": "^2.2.1",
"react-redux": "^7.1.0",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"react-select": "^3.0.4",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-promise": "^0.6.0",
"typesafe-actions": "^4.4.1"
}
}