-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1 KB
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
{
"name": "nodejs-demoapp",
"description": "Simple Node.js Express app for demos",
"version": "3.8.1",
"author": "Ben Coleman",
"engines": {
"node": "10.14.1"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/benc-uk/nodejs-demoapp.git"
},
"private": true,
"scripts": {
"start": "node server.js",
"start-bg": "node server.js &",
"tests-junit": "mocha --reporter mocha-junit-reporter --exit ./tests",
"tests": "mocha --exit ./tests",
"tests-postman": "newman run ./tests/postman_collection.json -r junit --timeout 60000 --reporter-junit-export test-results.xml"
},
"dependencies": {
"applicationinsights": "^1.3.0",
"axios": "^0.18.0",
"body-parser": "~1.18.2",
"dotenv": "^7.0.0",
"ejs": "~2.6.1",
"express": "~4.16.4",
"mongodb": "~2.2.0",
"morgan": "~1.9.1"
},
"devDependencies": {
"mocha": "^5.2.0",
"mocha-junit-reporter": "^1.21.0",
"supertest": "^4.0.2",
"newman": "^4.4.1"
}
}