-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 733 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 733 Bytes
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
{
"name": "LocateME_API",
"version": "1.0.0",
"description": "A Security application",
"main": "index.js",
"repository": "git@github.com:Danielshow/LocateME_API.git",
"author": "danielshow <danielshotonwa53@gmail.com>",
"license": "MIT",
"scripts": {
"build": "rm -rf dist/ && babel ./src --out-dir dist/ --ignore ./node_modules",
"start": "yarn build && node ./dist/index.js",
"start:dev": "nodemon --exec babel-node src/index.js",
"test": "jest"
},
"dependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/node": "^7.6.3",
"@babel/preset-env": "^7.6.3",
"express": "^4.17.1"
},
"devDependencies": {
"jest": "^24.9.0",
"nodemon": "^1.19.3"
}
}