-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.73 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
{
"name": "anime-go-notifier",
"version": "0.0.1",
"main": "index.js",
"scripts": {
"commit": "git-cz",
"zip": "rm function.zip; npm run build && zip -r function.zip -q .",
"build": "rm -rf dist && babel src --out-dir dist",
"start": "npm run build && node index.js",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"release": "standard-version",
"release:major": "npm run release -- --release-as major",
"release:minor": "npm run release -- --release-as minor",
"release:patch": "npm run release -- --release-as patch",
"prod-modules": "rm -rf ./node_modules; npm i --only=prod"
},
"devDependencies": {
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^6.8.0",
"eslint-config-lambdas": "^0.2.5",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"babel-eslint": "^10.1.0",
"husky": "^4.2.0",
"lint-staged": "^10.0.2",
"node-lambda": "^0.9.0",
"prettier": "^1.19.1",
"standard-version": "^7.1.0",
"aws-xray-sdk": "^2.5.0"
},
"dependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/node": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"jsdom": "^16.2.0",
"lodash": "^4.17.15",
"node-fetch": "^2.6.0",
"redis": "^3.0.2",
"serialize-error": "^5.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./src/*.js": [
"eslint --fix"
]
}
}