-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 968 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
36
37
38
39
{
"name": "blog-app-backend",
"version": "1.0.0",
"main": "app.js",
"author": "Arpit Verma",
"scripts": {
"dev": "tsx watch --env-file=.env src/app.ts",
"build": "tsc",
"start": "node --env-file=.env dist/app.js",
"test": "jest",
"test:watch": "jest --watch",
"clean": "rimraf dist"
},
"license": "ISC",
"description": "",
"dependencies": {
"@apollo/server": "^4.11.2",
"@graphql-tools/merge": "^9.0.15",
"@graphql-tools/schema": "^10.0.14",
"cors": "^2.8.5",
"express": "^4.21.2",
"graphql": "^16.10.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@types/supertest": "^6.0.2",
"jest": "^29.7.0",
"playwright": "^1.49.1",
"rimraf": "^6.0.1",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}