forked from MuSeek-WebApp/DevOps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 966 Bytes
/
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
{
"name": "devops",
"version": "1.0.0",
"description": "\"# DevOps\"",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node dist/index.js",
"dev": "nodemon --exec babel-node src/index.js",
"build": "babel src --out-dir dist",
"debug": "nodemon --exec babel-node --inspect src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MuSeek-WebApp/DevOps.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/MuSeek-WebApp/DevOps/issues"
},
"homepage": "https://github.com/MuSeek-WebApp/DevOps#readme",
"dependencies": {
"app-root-path": "^2.2.1",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"winston": "^3.2.1"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"nodemon": "^1.19.1"
}
}