-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (38 loc) · 860 Bytes
/
package.json
File metadata and controls
39 lines (38 loc) · 860 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
37
38
39
{
"name" : "plexus-vb",
"version" : "1.0.0",
"description": "Plexus a learn node js project.",
"main" : "app/server.js",
"scripts" : {
"lint" : "eslint",
"test" : "mocha",
"start": "nodemon app/server.js"
},
"author" : "vb10",
"license" : "ISC",
"dependencies": {
"body-parser" : "^1.19.0",
"express" : "^4.17.1",
"http-status-codes": "^1.4.0",
"mocha" : "^7.0.0",
"mongoose" : "^5.8.7",
"nodemon" : "^2.0.2"
},
"devDependencies": {
"eslint": "^6.8.0"
},
"nodemonConfig": {
"restartable": "rs",
"ignore" : [
"test/*",
"docs/*",
"node_modules/**/node_modules"
],
"delay": "2500",
"env" : {
"NODE_ENV": "development",
"PORT" : 4000,
"jasmine" : true
}
}
}