-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.56 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
45
46
47
48
{
"name": "desafion2b-api",
"version": "1.1.0",
"description": "Desafio passado para realizar com Node.js Serverless",
"main": "src/index.js",
"scripts": {
"start": "serverless --config serverless.dev.yml offline start",
"deploy": "SLS_DEBUG=* yarn test && serverless --config serverless.prod.yml deploy",
"lint": "node_modules/.bin/eslint .",
"test": "serverless --config serverless.dev.yml invoke test -p ./tests -ui bdd --recursive --compilers js:@babel/register"
},
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/AnomalyInnovations/serverless-nodejs-starter.git"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/preset-env": "^7.6.0",
"@babel/register": "^7.6.2",
"babel-loader": "^8.0.6",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"copy-webpack-plugin": "^5.0.4",
"eslint": "^6.4.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-mocha": "^6.1.1",
"eslint-plugin-promise": "^4.2.1",
"mocha": "^6.2.0",
"serverless-bundle": "^1.2.2",
"serverless-mocha-plugin": "^1.11.0",
"serverless-offline": "^5.3.3",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"body-parser": "^1.19.0",
"cloudinary": "^1.15.0",
"express": "^4.17.1",
"firebase": "^5.11",
"firebase-admin": "^7.0.0",
"serverless-http": "^2.3.0"
}
}