-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.51 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
{
"name": "apollo-server-lambda-postgres",
"version": "1.1.0",
"description": "An Apollo Server GraphQL API that uses Postgres as a database and is deployed to AWS Lambda",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "npx serverless offline",
"load-fixtures": "ts-node src/scripts/loadBookFixtures.ts",
"load-fixtures:staging": "NODE_ENV=staging ts-node src/scripts/loadBookFixtures.ts",
"load-fixtures:production": "NODE_ENV=production ts-node src/scripts/loadBookFixtures.ts",
"fetch-covers": "ts-node src/scripts/fetchBookCovers.ts",
"typeorm": "typeorm-ts-node-commonjs"
},
"author": "amalv",
"license": "MIT",
"dependencies": {
"@apollo/server": "^4.9.4",
"@as-integrations/aws-lambda": "^3.1.0",
"@faker-js/faker": "^8.3.1",
"dotenv": "^16.3.1",
"drizzle-orm": "^0.29.3",
"graphql": "^16.8.1",
"jsonwebtoken": "^9.0.2",
"jwks-rsa": "^3.1.0",
"pg": "^8.11.3",
"pg-hstore": "^2.3.4",
"reflect-metadata": "^0.2.1",
"winston": "^3.11.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.5.6",
"@types/node": "^20.11.13",
"@types/pg": "^8.10.9",
"drizzle-kit": "^0.20.9",
"jest": "^29.7.0",
"semantic-release": "^23.0.0",
"serverless-dotenv-plugin": "^6.0.0",
"serverless-offline": "^13.2.0",
"serverless-plugin-typescript": "^2.1.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.7.0",
"typescript": "^5.2.2"
}
}