-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.46 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
{
"name": "serverless-gql",
"version": "1.0.0",
"description": "Serverless webpack example using Typescript",
"main": "src/handler.ts",
"scripts": {
"start": "sls offline --httpPort 8080",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"apollo-server-lambda": "^2.16.1",
"graphql": "^15.3.0",
"source-map-support": "^0.5.10"
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.1",
"@types/aws-lambda": "^8.10.17",
"@types/node": "^10.12.18",
"@types/serverless": "^1.72.5",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"fork-ts-checker-webpack-plugin": "^3.0.1",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "2.0.5",
"serverless-offline": "^6.5.0",
"serverless-webpack": "^5.2.0",
"ts-loader": "^5.3.3",
"ts-node": "^8.10.2",
"typescript": "^3.2.4",
"webpack": "^4.29.0",
"webpack-node-externals": "^1.7.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"author": "Zachary Cowan",
"license": "MIT",
"lint-staged": {
"*.ts": [
"eslint --max-warnings=0 --cache --fix",
"npx prettier --write"
]
}
}