-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.46 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
55
56
57
58
{
"name": "coders-garden-website-backend",
"version": "1.0.0",
"description": "backend for official website",
"main": "server.ts",
"scripts": {
"test": "jest",
"start": "nodemon server.ts",
"ci": "npm install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PRATHAM1ST/coders-garden-backend.git"
},
"keywords": [
"backend",
"coders",
"codersgarden",
"garden",
"nodejs",
"express"
],
"author": "Pratham Chudasama",
"license": "ISC",
"bugs": {
"url": "https://github.com/PRATHAM1ST/coders-garden-backend/issues"
},
"homepage": "https://github.com/PRATHAM1ST/coders-garden-backend#readme",
"dependencies": {
"axios": "^1.5.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-graphql": "^0.12.0",
"graphql": "^15.8.0",
"linkedom": "^0.15.3"
},
"devDependencies": {
"@babel/preset-env": "^7.22.15",
"@babel/preset-typescript": "^7.22.15",
"@types/axios": "^0.14.0",
"@types/cors": "^2.8.14",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.5",
"@types/morgan": "^1.9.5",
"@types/node": "^20.6.2",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"dotenv": "^16.3.1",
"eslint": "^8.50.0",
"jest": "^29.7.0",
"morgan": "^1.10.0",
"nodemon": "^3.0.1",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}