-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 760 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 760 Bytes
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
{
"name": "QRcode",
"version": "1.0.0",
"description": "Scanner QRcode with Nodejs",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon app.js",
"dev": "nodemon app.js"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"ejs": "^3.1.7",
"express": "^4.17.1",
"http-errors": "^1.7.3",
"mongoose": "^5.9.7",
"qrcode": "^1.4.4"
},
"devDependencies": {
"@babel/preset-env": "^7.9.0",
"babel-preset-es2016": "^6.24.1",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"nodemon": "^2.0.2"
}
}