forked from code-kotis/qr-code-scanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 930 Bytes
/
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
{
"name": "barcodeScanner",
"version": "3.0.0",
"engines": {
"node": "4.1.1"
},
"dependencies": {
"is-url": "^1.2.2"
},
"devDependencies": {
"babel-core": "latest",
"babel-loader": "^6.2.8",
"babel-preset-es2015": "^6.18.0",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^5.0.1",
"css-loader": "^0.26.1",
"extract-text-webpack-plugin": "^2.1.0",
"html-webpack-plugin": "^2.24.1",
"image-webpack-loader": "^3.0.0",
"node-sass": "^3.13.0",
"offline-plugin": "^4.5.3",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"uglify-js": "^2.7.5",
"vinyl-source-stream": "^1.1.0",
"webpack": "2.2.0",
"webpack-dev-server": "2.2.0"
},
"scripts": {
"start": "webpack-dev-server --hot --inline --open",
"deploy": "npm run build && bash deploy.sh",
"build": "cross-env NODE_ENV=production webpack -p --config webpack.config.js"
}
}