-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.89 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.89 KB
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
59
60
61
62
63
64
65
66
{
"name": "blogtonic-backend",
"version": "1.0.0",
"description": "sssf-course backend project",
"main": "src/server.ts",
"scripts": {
"start": "node dist/src/server.js",
"dev": "nodemon src/server.ts",
"build": "tsc",
"copyGraphql": "copyfiles --error src/api/schemas/*.graphql dist",
"postbuild": "npm run copyGraphql",
"lint": "eslint --fix src test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ramizwd/BlogTonic-backend.git"
},
"author": "ramizwd",
"license": "MIT",
"bugs": {
"url": "https://github.com/ramizwd/BlogTonic-backend/issues"
},
"homepage": "https://github.com/ramizwd/BlogTonic-backend#readme",
"dependencies": {
"@apollo/server": "^4.6.0",
"@graphql-tools/load-files": "^6.6.1",
"@graphql-tools/merge": "^8.4.1",
"@graphql-tools/schema": "^9.0.18",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"graphql": "^16.6.0",
"graphql-rate-limit": "^3.3.0",
"graphql-shield": "^7.6.5",
"helmet": "^6.1.5",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.0.4",
"morgan": "^1.10.0",
"randomstring": "^1.2.3"
},
"devDependencies": {
"@types/apidoc": "^0.50.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.1",
"@types/jsonwebtoken": "^9.0.1",
"@types/morgan": "^1.9.4",
"@types/node": "^18.15.11",
"@types/randomstring": "^1.1.8",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"copyfiles": "^2.4.1",
"eslint": "^7.32.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"expect": "^29.5.0",
"gts": "^3.1.1",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}