-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 774 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 774 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
{
"name": "node-js-template",
"version": "1.0.0",
"description": "A basic template for an Express app",
"main": "app.js",
"repository": "https://github.com/LucasCtrl/node-js-template",
"author": "LucasCtrl <lucasalt@protonmail.com>",
"license": "Unlicenced",
"private": true,
"dependencies": {
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"morgan": "^1.10.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"nodemon": "^2.0.2",
"prettier": "^1.19.1"
},
"scripts": {
"dev": "nodemon app.js",
"start": "node app.js",
"lint": "eslint --ext .js,.hbs --ignore-path .gitignore ."
}
}