-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.67 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.67 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
{
"name": "@evocount/react-code-scanner",
"version": "0.0.11",
"description": "A react module for scanning codes like barcodes and QR codes.",
"main": "build/index.js",
"repository": "git@github.com:evocount/react-code-scanner.git",
"scripts": {
"build:development": "cross-env TS_NODE_PROJECT=\"webpack.tsconfig.json\" npx webpack --config webpack/development.ts",
"build:production": "npm run clean && cross-env TS_NODE_PROJECT=\"webpack.tsconfig.json\" npx webpack --config webpack/production.ts",
"clean": "rm -rf build",
"test": "npm run test:lint",
"test:lint": "npx eslint src/**/*",
"prepack": "npm run clean && npm run build:production",
"analyze": "cross-env TS_NODE_PROJECT=\"webpack.tsconfig.json\" npx webpack --config webpack/analyze.ts"
},
"keywords": [
"Barcode",
"QR-Code",
"React"
],
"author": "EvoCount GmbH",
"license": "MIT",
"devDependencies": {
"@types/node": "^15.3.0",
"@types/react": "^17.0.5",
"@types/styled-components": "^5.1.9",
"@types/w3c-image-capture": "^1.0.2",
"@types/webpack": "^5.28.0",
"@types/webpack-bundle-analyzer": "^4.4.0",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"cross-env": "^7.0.3",
"eslint": "^7.26.0",
"eslint-plugin-react": "^7.23.2",
"ts-loader": "^9.1.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.4",
"webpack": "^5.36.2",
"webpack-bundle-analyzer": "^4.4.1",
"webpack-cli": "^4.7.0"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"styled-components": "^5.3.0"
},
"dependencies": {
"@evocount/signal": "0.0.7",
"@zxing/browser": "0.0.9",
"@zxing/library": "^0.18.5",
"image-capture": "^0.4.0"
}
}