-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 888 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 888 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
37
{
"name": "sample-aws-starter-project",
"version": "1.0.0",
"description": "Sample Serverless AWS App",
"main": "handler.js",
"scripts": {
"start": "sls offline --noAuth",
"test": "jest --coverage",
"precommit": "eslint .",
"pretest": "eslint --ignore-path .gitignore .",
"linter": "eslint . --fix"
},
"keywords": [
"aws",
"serverless",
"nodejs",
"starter"
],
"author": "EdyVision",
"license": "ISC",
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.16.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.0",
"jest": "^26.6.3",
"mockingoose": "^2.13.2",
"prettier": "^2.2.1",
"serverless-offline": "^6.8.0",
"serverless-prune-plugin": "^1.4.3"
},
"dependencies": {
"dotenv": "^8.2.0",
"mongoose": "^5.11.8"
}
}