-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.19 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
{
"name": "violet-air",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/codeminders/violet-air",
"author": "Alex Sova <[email protected]>",
"contributors": [
{
"name": "Alex Saveliev",
"email": "[email protected]"
},
{
"name": "Vadim Zaliva",
"email": "[email protected]"
}
],
"license": "BSD-3-Clause",
"private": true,
"dependencies": {
"@googlemaps/google-maps-services-js": "^3.1.13",
"actions-on-google": "^2.13.0",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"node-fetch": "^2.6.0",
"require-all": "^3.0.0"
},
"scripts": {
"server": "forever -w index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "google_maps_api_key=${google_maps_api_key:?Must provide google_maps_api_key.} docker build --build-arg google_maps_api_key=${google_maps_api_key} -t codeminders/violet-air .",
"start": "docker run -p 8081:80 --name violet-air-app -d codeminders/violet-air",
"stop": "docker rm --force violet-air-app"
}
}