-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
61 lines (61 loc) · 1.36 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "cloud-native-weather-nodejs",
"version": "1.3.0",
"description": "This example implements a simple weather REST service using the Node.js and various useful frameworks.",
"main": "index.js",
"bin": "index.js",
"scripts": {
"dev": "nodemon index.js",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/qaware/cloud-native-weather-nodejs.git"
},
"keywords": [
"nodejs",
"cloud-native",
"docker",
"microservice",
"tilt"
],
"author": "M.-Leander Reimer",
"license": "MIT",
"bugs": {
"url": "https://github.com/qaware/cloud-native-weather-nodejs/issues"
},
"homepage": "https://github.com/qaware/cloud-native-weather-nodejs",
"dependencies": {
"axios": "^0.27.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-rate-limit": "^6.6.0",
"helmet": "^6.0.0",
"morgan": "^1.10.0",
"pg": "^8.8.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.25.4",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"nodemon": "^2.0.20",
"pkg": "^5.8.0"
},
"nodemonConfig": {
"ignore": [
"test/*",
"docs/*",
"*.md"
],
"delay": 1000
},
"pkg": {
"scripts": "*.js",
"assets": "facicon.ico",
"targets": [
"node16-linux-x64"
],
"outputPath": "dist"
}
}