-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
71 lines (71 loc) · 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
{
"name": "whitebrick-cloud",
"version": "1.0.0",
"description": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "tsc -w -p tsconfig.build.json",
"lint": "eslint ./src --ext .ts",
"format": "prettier --config .prettierrc './src/**/*.ts' --write",
"postinstall": "husky install .github/husky",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/whitebrick/whitebrick-cloud.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/whitebrick/whitebrick-cloud/issues"
},
"homepage": "https://github.com/whitebrick/whitebrick-cloud#readme",
"dependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"apollo-server-lambda": "^2.22.2",
"aws-sdk": "^2.962.0",
"axios": "^0.21.1",
"graphql": "^15.5.0",
"graphql-constraint-directive": "^2.1.1",
"graphql-tools": "^7.0.4",
"graphql-type-json": "^0.3.2",
"is-port-reachable": "^3.0.0",
"lodash": "^4.17.21",
"pg": "^8.6.0",
"pg-format": "^1.0.4",
"reflect-metadata": "^0.1.13",
"serverless": "^2.35.0",
"tslog": "^3.2.0",
"typescript": "^4.2.4",
"voca": "^1.4.0"
},
"devDependencies": {
"@types/node": "^16.4.13",
"@types/pg": "^7.14.11",
"@types/voca": "^1.4.0",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"prettier": "2.3.0",
"serverless-dotenv-plugin": "^3.9.0",
"serverless-offline": "^5.12.1",
"serverless-webpack": "^5.4.1",
"ts-loader": "^8.1.0",
"webpack": "^5.51.2",
"webpack-node-externals": "^2.5.2"
},
"lint-staged": {
"*.ts": "eslint --ignore-path .eslintignore --cache --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}