-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 881 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 881 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
32
33
34
35
36
{
"name": "boilerplate_node",
"version": "1.0.0",
"description": "Boilerplate to be used in Nodejs with Express for the making of a datingsite / webapp",
"main": "server.js",
"scripts": {
"run": "nodemon main",
"test": "node main"
},
"keywords": [
"nodejs",
"express"
],
"author": "Andres Pinto",
"license": "ISC",
"dependencies": {
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"ejs": "^3.0.1",
"express": "^4.17.1",
"express-session": "^1.17.0",
"mongoose": "^5.9.3"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1"
},
"nodemonConfig": {
"ignore": ["api/*.json", "modules/*.json"]
}
}