-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 752 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 752 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
27
28
29
30
{
"name": "fitnessapi",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "export NODE_ENV=test&& nodemon --exec mocha --require @babel/register",
"start": "export NODE_ENV=development&& nodemon --exec babel-node index"
},
"author": "Raul Palacios",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.0",
"sqlite3": "^4.0.8",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/node": "^7.4.5"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/register": "^7.4.4",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"faker": "^4.1.0",
"mocha": "^6.1.4",
"nodemon": "^1.19.1"
}
}