-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 920 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 920 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
31
32
33
34
35
36
{
"name": "lesspod-serverless-poc",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon --exec babel-node dev-server.js",
"build": "babel src --out-dir dist"
},
"keywords": [],
"author": "khubo",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"dotenv": "^6.1.0",
"express": "^4.16.4",
"express-boom": "^2.0.0",
"joi": "^14.3.0",
"jsonwebtoken": "^8.4.0",
"mongoose": "^5.3.14",
"serverless-http": "^1.8.0"
},
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/register": "^7.0.0",
"@babel/cli": "^7.1.5",
"@babel/node": "^7.0.0",
"@babel/plugin-transform-modules-commonjs": "^7.1.0",
"kexec": "^3.0.0",
"nodemon": "^1.18.7",
"serverless-offline": "^3.31.3"
}
}