-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 2.09 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
59
60
61
62
63
64
65
66
{
"name": "blogexpressgraphqlts",
"version": "1.0.0",
"description": "BlogExpressGraphQLTS is a TypeScript-based project for creating a feature-rich blog using Express.js and GraphQL, without relying on NestJS. This project aims to provide a flexible and powerful backend solution for managing a blog application through GraphQL queries and mutations.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"test:e2e": "jest --config ./test/jest-e2e.json",
"build": "npx tsc",
"start": "node ./dist/server.js",
"dev": " nodemon"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BaseMax/BlogExpressGraphQLTS.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/BaseMax/BlogExpressGraphQLTS/issues"
},
"homepage": "https://github.com/BaseMax/BlogExpressGraphQLTS#readme",
"dependencies": {
"@apollo/server": "^4.9.3",
"@types/argon2": "^0.15.0",
"@types/jsonwebtoken": "^9.0.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"cuid": "^3.0.0",
"dotenv": "^16.3.1",
"graphql": "^16.8.1",
"jsonwebtoken": "^9.0.1",
"mongoose": "^8.9.5",
"pino": "^8.15.0",
"pino-pretty": "^10.2.0",
"reflect-metadata": "^0.1.13",
"sharp": "^0.32.6",
"tsyringe": "^4.8.0",
"type-graphql": "^2.0.0-beta.2"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "29.5.0",
"@types/mongoose": "^5.11.97",
"@types/node": "18.15.11",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"concurrently": "^7.2.2",
"cspell": "^6.12.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "29.5.0",
"nodemon": "^3.1.7",
"prettier": "^2.3.2",
"prisma": "^4.14.0",
"source-map-support": "^0.5.20",
"supertest": "^6.3.3",
"ts-jest": "29.0.5",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"tsconfig-paths": "4.2.0",
"typescript": "^4.7.4"
}
}