-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (47 loc) · 1.8 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
{
"name": "postgrest-docker",
"version": "1.0.1",
"description": "Basic example of initialising ```PostGres``` ```pgAdmin```, ```PostgREST``` and ```Swagger``` with docker compose on ubuntu.",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha --timeout 3000 --exit",
"patch": "npm version patch && git push && git push --tags",
"minor": "npm version minor && git push && git push --tags",
"major": "npm version major && git push && git push --tags",
"start": "pm2 start webhook/ecosystem.config.js && npm run restart",
"restart": "docker compose down && docker compose up -d --build",
"stop": "docker compose down -v && pm2 stop webhook/ecosystem.config.js",
"pull": "git submodule update --recursive --remote && npm install",
"flush": "docker compose down && docker volume prune",
"act": "act -P macos-latest=-self-hosted",
"docker:local": "docker compose -f docker-compose-local.yml up",
"docker:docu": "docker compose -f docker-compose-schemaspy.yml up",
"docker:github": "docker compose --env-file _.env up -d postgres postgrest",
"test:dev": "ENV_FILE=_.env mocha --timeout 3000 --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Thuenen-Forest-Ecosystems/TFM-postgres-docker.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Thuenen-Forest-Ecosystems/TFM-postgres-docker/issues"
},
"homepage": "https://github.com/Thuenen-Forest-Ecosystems/TFM-postgres-docker#readme",
"devDependencies": {
"docker-compose": "^0.24.8",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.19.2",
"helmet": "^7.1.0",
"mocha": "^10.4.0",
"pg": "^8.12.0",
"simple-git": "^3.24.0",
"sync-request": "^6.1.0"
}
}