-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.27 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
{
"name": "gitrowspack-api",
"version": "0.0.4",
"description": "A node-api for the gitrows npm package",
"scripts": {
"dev": "test -f .env && nodemon index.js || echo 'Error, No .env found !'",
"start": "test -f .env && node index.js || echo 'Error, No .env found !'",
"test": "jest",
"docker-build": "test -f .env && docker build -t sanixdarker/gitrowspack-api:latest -f Dockerfile . || echo 'Error, No .env found !'",
"docker-run": "test -f .env && docker run --env-file .env -it --rm -p 3030:3030 sanixdarker/gitrowspack-api:latest || echo 'Error, No .env found !'"
},
"repository": {
"type": "git",
"url": "https://github.com/sanix-darker/gitrowspack-api.git"
},
"keywords": [
"git",
"github",
"gitlab",
"api",
"rest",
"json",
"csv",
"database",
"db"
],
"author": "sanix-darker",
"license": "MIT",
"bugs": {
"url": "https://github.com/sanix-darker/gitrowspack-api.git"
},
"homepage": "https://github.com/sanix-darker/gitrowspack-api.git",
"devDependencies": {
"jest": "^29.7.0",
"nodemon": "^3.1.7"
},
"dependencies": {
"csv-parse": "^5.5.6",
"csv-stringify": "^6.5.1",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"node-fetch": "^3.3.2",
"yamljs": "^0.3.0"
}
}