-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.32 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.32 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
39
40
41
42
43
44
45
46
{
"name": "pantunis-api",
"version": "1.0.0",
"description": "API for Pantunis",
"main": "src/index.js",
"type": "module",
"license": "AGPL-version-3.0",
"private": false,
"engines": {
"node": ">= 14.0.0",
"npm": ">= 6.0.0"
},
"homepage": "api.pantunis.com",
"repository": {
"type": "git",
"url": "https://github.com/irfanzainudin/pantunis-api"
},
"bugs": "",
"keywords": [],
"author": {
"name": "Irfan Zainudin",
"email": "m.irfan.zain@gmail.com",
"url": "https://github.com/irfanzainudin"
},
"contributors": [],
"scripts": {
"dev": "",
"test": "",
"start:dev": "nodemon ./src/index.js",
"docker-build:dev": "docker build -t irfanzainudin/pantunis-api:latest -f Dockerfile.dev .",
"docker-run:dev": "docker run -it -p 3000:3000 --name pantunis-api -v ./:/app -v my-node-modules:/app/node_modules irfanzainudin/pantunis-api:latest",
"docker-build": "docker build -t irfanzainudin/pantunis-api:latest -f Dockerfile.prod .",
"docker-run": "docker run -it -p 3001:3001 --name pantunis-api irfanzainudin/pantunis-api:latest",
"start": "node ./src/index.js"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.21.1",
"knex": "^3.1.0",
"path": "^0.12.7",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"nodemon": "^3.1.7"
}
}