-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1 KB
/
package.json
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
40
41
42
43
{
"name": "nodejs-demo-app",
"description": "Template App for NodeJS Cloud Native Projects",
"version": "1.0.0",
"main": "server.js",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^0.0.0",
"jest": "^29.7.0",
"superagent": "^8.0.9",
"supertest": "^6.3.3"
},
"engines": {
"node": " ^16 | ^18"
},
"scripts": {
"start": "node server.js",
"production": "node server.js",
"test": "jest",
"lint": "standard --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bkribbs15/nodejs-demo-app.git"
},
"keywords": [
"nodejs",
"cloud-native"
],
"author": "Bryan Kribbs",
"license": "ISC",
"bugs": {
"url": "https://github.com/bkribbs15/nodejs-demo-app/issues"
},
"homepage": "https://github.com/bkribbs15/nodejs-demo-app#readme",
"dependencies": {
"express": "^4.21.2",
"standard": "^17.1.2",
"swagger-jsdoc": "^6.2.8",
"swagger-ui": "^5.18.1",
"swagger-ui-express": "^5.0.1"
}
}