-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 857 Bytes
/
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
{
"name": "graphql-api-with-nodejs-mongodb-lambda",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"test": "jest",
"build": "npx tsc",
"start": "npx tsc && node dist/index.js",
"dev": "nodemon src/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.11",
"jest": "^29.7.0",
"serverless-dotenv-plugin": "^6.0.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"apollo-server": "^3.13.0",
"apollo-server-core": "^3.13.0",
"apollo-server-lambda": "^3.13.0",
"dotenv": "^16.4.5",
"graphql": "^16.8.1",
"mongoose": "^8.3.4",
"node-input-validator": "^4.5.1",
"nodemon": "^3.1.0"
}
}