-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.38 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
{
"name": "bff",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"keywords": [],
"author": "",
"license": "ISC",
"scripts": {
"tsc": "tsc --project tsconfig.json",
"husky:commit-msg": "commitlint",
"husky:pre-commit": "lint-staged",
"lint": "eslint \"src/**/*.ts\" --fix",
"prepare": "husky install",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write .",
"start": "nodemon",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@graphql-tools/schema": "8.3.1",
"apollo-server": "3.5.0",
"apollo-server-lambda": "3.5.0",
"graphql": "15.8.0",
"lodash.merge": "4.6.2"
},
"devDependencies": {
"@commitlint/cli": "15.0.0",
"@commitlint/config-conventional": "15.0.0",
"@types/lodash.merge": "4.6.6",
"@types/node": "16.11.12",
"@typescript-eslint/eslint-plugin": "5.6.0",
"@typescript-eslint/parser": "5.6.0",
"eslint": "8.4.1",
"eslint-config-airbnb-typescript": "16.1.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-graphql": "4.0.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-simple-import-sort": "7.0.0",
"eslint-plugin-unused-imports": "2.0.0",
"husky": "7.0.4",
"lint-staged": "12.1.2",
"nodemon": "2.0.15",
"prettier": "2.5.1",
"ts-node": "10.4.0",
"typescript": "4.5.2"
}
}