-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
71 lines (71 loc) · 2.64 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
{
"name": "barcode_scanner_widget",
"packageName": "QuaggaJs_ExtensionPackage",
"version": "1.2.1",
"description": "A widget that allows reading barcodes using the quagga.js libary.no",
"author": "[email protected]",
"minimumThingWorxVersion": "6.0.0",
"homepage": "https://github.com/ptc-iot-sharing/ThingworxBarcodeScannerWidget",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"check": "eslint --ext ts,tsx src",
"fix": "eslint --ext ts,tsx --fix src",
"build": "webpack --mode production",
"buildDev": "webpack --mode development",
"watch": "webpack --watch --mode development",
"server": "webpack serve",
"upload": "webpack --mode development --env upload",
"prepublishOnly": "rm -rf dist && mkdir dist && yarn run build && mv zip/* dist && yarn run buildDev && mv zip/* dist"
},
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@semantic-release/gitlab": "^6.0.9",
"@types/jquery": "^3.5.5",
"@types/node": "^14.14.33",
"@types/webpack-env": "^1.16.0",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^8.0.0",
"css-loader": "^5.1.2",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^8.2.0",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"extract-loader": "^5.1.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^6.2.0",
"got": "^11.8.2",
"prettier": "^2.2.1",
"semantic-release": "^17.4.1",
"source-map-loader": "^2.0.1",
"style-loader": "^2.0.0",
"ts-declaration-webpack-plugin": "^1.2.3",
"ts-loader": "^8.0.18",
"typescript": "^4.2.3",
"url-loader": "^4.1.1",
"webpack": "^5.24.4",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3",
"xml2js": "^0.4.22",
"zip-webpack-plugin": "^4.0.1"
},
"dependencies": {
"@ericblade/quagga2": "^1.4.1",
"typescriptwebpacksupport": "^2.0.9"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}