forked from ashramsey/aws-lambda-graphql
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.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
{
"type": "module",
"scripts": {
"build": "npm run build -w @cj-tech-master/aws-lambda-graphql",
"publish": "cd packages/aws-lambda-graphql && npm publish --access public",
"lint": "eslint",
"lint-fix": "eslint --fix",
"test": "jest",
"test:ci": "jest --ci --runInBand",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"type-check": "npm run type-check -w @cj-tech-master/aws-lambda-graphql",
"clean": "rimraf package-lock.json **/node_modules -g && npm i"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"dependencies": {
"graphql": "^16.9.0",
"graphql-subscriptions": "^2.0.0"
},
"devDependencies": {
"@eslint/js": "9.12.0",
"@types/aws-lambda": "8.10.145",
"@types/jest": "29.5.13",
"@types/node": "22.7.5",
"@typescript-eslint/eslint-plugin": "8.8.1",
"@typescript-eslint/parser": "8.8.1",
"eslint": "9.12.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-import-x": "4.3.1",
"eslint-plugin-unused-imports": "4.1.4",
"jest": "29.7.0",
"rimraf": "6.0.1",
"typescript": "5.6.3",
"typescript-eslint": "8.8.1"
}
}