-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.57 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
49
50
51
52
53
54
{
"name": "nodejs-graphql-fake-api",
"version": "1.0.0",
"description": "NodeJS with graphQL API for providing fake data",
"main": "src/index.ts",
"repository": "https://github.com/ahmedalatawi/nodejs-graphql-fake-api",
"author": "Ahmed Alatawi",
"license": "MIT",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"start": "node ./dist/api/index.js",
"dev": "nodemon ./api/index.ts",
"test": "jest",
"lint": "eslint 'src/**/*.{js,ts}'",
"generate:prisma": "prisma generate",
"prebuild": "yarn generate:prisma"
},
"dependencies": {
"@apollo/server": "^4.3.1",
"@graphql-tools/schema": "^9.0.13",
"@prisma/client": "^5.16.1",
"body-parser": "^1.20.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"graphql": "^16.9.0",
"graphql-tag": "^2.12.6"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@shelf/jest-mongodb": "^4.3.2",
"@types/cors": "^2.8.13",
"@types/dotenv": "^8.2.0",
"@types/eslint": "^9.6.0",
"@types/jest": "^29.5.12",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"apollo-server-express": "^3.13.0",
"dotenv-cli": "^7.4.2",
"eslint": "9.x",
"globals": "^15.8.0",
"jest": "^29.7.0",
"jest-mock-extended": "^3.0.7",
"mongodb": "^6.8.0",
"nodemon": "^2.0.20",
"prisma": "^5.14.0",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"typescript-eslint": "^8.0.0"
}
}