-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.34 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
{
"name": "howis-api",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"compile": "tsc",
"start": "nodemon --watch \"*.ts\" --exec \"ts-node --esm\" ./src/server.ts",
"start-prod": "ts-node --esm ./src/server.ts",
"eslint:fix": "eslint --fix",
"codegen": "graphql-codegen --config codegen.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@apollo/server": "^4.7.1",
"@as-integrations/aws-lambda": "^2.0.1",
"@prisma/client": "^4.14.0",
"aws-jwt-verify": "^4.0.0",
"dotenv": "^16.0.3",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6",
"jsonwebtoken": "^9.0.0",
"serverless-dotenv-plugin": "^6.0.0",
"serverless-plugin-typescript": "^2.1.4"
},
"devDependencies": {
"@graphql-codegen/cli": "3.3.1",
"@graphql-codegen/introspection": "3.0.1",
"@graphql-codegen/typescript": "3.0.4",
"@graphql-codegen/typescript-resolvers": "3.2.1",
"@types/node": "^18.15.2",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-sort-destructure-keys": "^1.5.0",
"nodemon": "^2.0.21",
"prettier": "^2.8.4",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}