-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.7 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
{
"name": "barcoded",
"version": "1.0.0",
"description": "This website is a simple barcode generator, used for DPCIs, backroom locations, cart labels, or whatever you may need!",
"main": "index.js",
"scripts": {
"harp-build": "harp compile",
"harp-serve": "harp . --port ${PORT:-9000}",
"webpack-build-dev": "export NODE_OPTIONS=--openssl-legacy-provider; webpack --config webpack.dev.js",
"webpack-build-prod": "export NODE_OPTIONS=--openssl-legacy-provider; webpack --config webpack.prod.js",
"webpack-watch-dev": "export NODE_OPTIONS=--openssl-legacy-provider; webpack --watch --config webpack.dev.js",
"webpack-watch-prod": "export NODE_OPTIONS=--openssl-legacy-provider; webpack --watch --config webpack.prod.js",
"build": "npm run webpack-build-prod; npm run harp-build",
"serve": "concurrently \"npm:webpack-watch-dev\" \"npm:harp-serve\"",
"serve-prod": "NODE_ENV=production concurrently \"npm:webpack-watch-prod\" \"npm:harp-serve\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pschfr/barcoded.git"
},
"keywords": [
"harp",
"barcode",
"io-barcode",
"tachyons",
"tachyons-sass",
"webpack",
"concurrently"
],
"author": "Paul Schaefer",
"license": "MIT",
"bugs": {
"url": "https://github.com/pschfr/barcoded/issues"
},
"homepage": "https://github.com/pschfr/barcoded#readme",
"dependencies": {
"concurrently": "^5.3.0",
"dotenv": "^8.0.0",
"harp": "^0.40.3",
"io-barcode": "^1.3.0",
"tachyons-sass": "^4.9.5",
"webpack": "^4.29.5",
"webpack-merge": "^4.2.1"
},
"devDependencies": {
"webpack-cli": "^3.2.3"
}
}