-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (40 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
{
"name": "git-stats",
"version": "1.0.0",
"description": "Microservice API for gathering GitHub informations on a given User. Developed as part of a personal Data Visualization project.",
"main": "src/index.js",
"scripts": {
"dev": "nodemon --inspect ./src/index.js --exec babel-node",
"test": "jest",
"clean": "rm -rf build && mkdir build",
"build-babel": "babel -d ./build ./src -s",
"build": "npm run clean && npm run build-babel",
"start-bb": "npm run build && node ./build/index.js",
"start": "node ./src/index.js"
},
"author": "Salvatore Ventrone",
"license": "ISC",
"devDependencies": {
"nodemon": "^1.19.1",
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-jest": "^24.8.0",
"jest": "^24.8.0",
"regenerator-runtime": "^0.13.3"
},
"dependencies": {
"@octokit/rest": "^16.28.9",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"mongodb": "^3.2.7",
"mongoose": "^5.7.5"
},
"repository": {
"url": "https://github.com/Ventrosky/git-stats"
}
}