-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.15 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
{
"name": "cornercoffee",
"version": "1.0.0",
"description": "Dockerized REST API",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node lib/server.js",
"start:dev": "nodemon --exec babel-node src/server.js",
"build": "babel src --out-dir lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fd-rey/cornerCoffe.git"
},
"author": "Francisco Rey",
"license": "MIT",
"bugs": {
"url": "https://github.com/fd-rey/cornerCoffe/issues"
},
"homepage": "https://github.com/fd-rey/cornerCoffe#readme",
"dependencies": {
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"core-js": "^3.1.3",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"express-unless": "^0.5.0",
"lodash": "^4.17.15",
"mongoose": "^5.7.5",
"storyboard": "^3.1.4",
"storyboard-preset-console": "^3.1.4"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"mocha": "^6.1.4",
"nodemon": "^1.19.1"
}
}