-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.54 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
49
50
51
52
53
54
55
{
"scripts": {
"test": "eslint . && serverless invoke local --function first --path event.json",
"test:watch": "yarn test --watch",
"test:update": "yarn test --update",
"test:coverage": "yarn test --coverage",
"lint": "eslint \"src/**\" --cache",
"lint:fix": "yarn lint --fix",
"lint:staged": "yarn lint:fix --max-warnings=0",
"precommit": "lint-staged",
"prepush": "yarn test",
"start": "serverless webpack serve -v",
"bundle": "serverless webpack"
},
"lint-staged": {
"*.{js,jsx}": [
"lint:staged",
"git add"
],
"*.{json,css,scss,less}": [
"prettier --write",
"git add"
]
},
"name": "lambda-microservice-template",
"version": "1.0.1",
"description": "Lambda Microservice Template",
"author": "MichaelTran",
"repository": "https://github.com/M1chaelTran/lambda-microservice-template",
"eslintConfig": {
"extends": "prettier"
},
"devDependencies": {
"aws-sdk": "^2.6.3",
"babel-cli": "^6.14.0",
"babel-core": "^6.13.2",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.0.0",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.13.2",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^4.10.0",
"eslint-config-prettier": "^2.7.0",
"eslint-config-with-prettier": "^2.1.2",
"eslint-plugin-prettier": "^2.3.1",
"prettier": "^1.7.4",
"serverless-webpack": "^4.0.0",
"webpack": "^3.8.1"
},
"dependencies": {
"babel-runtime": "6.26.0"
},
"license": "MIT"
}