-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
79 lines (79 loc) · 2.2 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "serverless-template",
"version": "1.0.0",
"description": "A serverless template ",
"main": "index.js",
"scripts": {
"format": "prettier-standard './**/**/*.js'",
"lint": "npm run lint:js",
"lint:eslint": "eslint --ignore-path .gitignore .",
"lint:eslint:fix": "eslint --ignore-path .gitignore --fix",
"lint:js": "npm run lint:eslint -- . ",
"lint:staged": "lint-staged",
"test": "jest --coverage --silent",
"test:local": "jest --coverage",
"build": "sls package --stage=dev",
"deploy-dev": "sls deploy --stage=dev",
"start-offline": "yarn debug && sls offline start --stage=local --offline",
"debug": "export SLS_DEBUG=*"
},
"author": "vishnu-wednesday",
"license": "ISC",
"dependencies": {
"@babel/plugin-transform-regenerator": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/runtime": "^7.15.4",
"axios": "^0.24.0",
"serverless-offline": "^8.1.0",
"source-map-support": "^0.5.19"
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.5",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.2.1",
"babel-loader": "^8.1.0",
"babel-preset-env": "^1.7.0",
"core-js": "3",
"eslint": "5.16.0",
"eslint-config-prettier": "^4.1.0",
"eslint-config-prettier-standard": "^3.0.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-standard": "^4.0.1",
"jest": "^27.2.1",
"jest-environment-jsdom": "^27.2.0",
"lint-staged": "^9.4.2",
"mockdate": "^3.0.2",
"pre-commit": "1.2.2",
"prettier": "1.17.0",
"prettier-config-standard": "^1.0.1",
"regenerator-runtime": "^0.13.9",
"serverless": "^2.51.2",
"serverless-dotenv-plugin": "^3.0.0",
"serverless-webpack": "^5.3.5",
"webpack": "^4.44.1",
"webpack-node-externals": "^2.5.2"
},
"precommit": "lint:staged",
"lint-staged": {
"*.js": [
"npm run lint:eslint:fix .",
"git add --force",
"jest --findRelatedTests $STAGED_FILES"
],
"*.json": [
"prettier --write",
"git add --force"
]
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}