-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.69 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "graphql-shop-api",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "npm run build && npm run server",
"server": "node -r dotenv/config build/server.js",
"build": "npm run clean && npm run build-ts",
"watch": "npx concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run watch-node\"",
"watch-node": "nodemon -r dotenv/config build/server.js",
"clean": "rimraf ./build",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"upgrade": "npm update --save-dev && npm update --save"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RaoofJM/node-graphql-shop-api.git"
},
"author": "RaoofJM",
"license": "MIT",
"bugs": {
"url": "https://github.com/RaoofJM/node-graphql-shop-api/issues"
},
"homepage": "https://github.com/RaoofJM/node-graphql-shop-api#readme",
"dependencies": {
"@apollo/server": "^4.7.4",
"@graphql-tools/schema": "^10.0.0",
"app-root-path": "^3.1.0",
"axios": "^1.4.0",
"bcrypt": "^5.0.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-fileupload": "^1.4.0",
"file-type": "^18.5.0",
"graphql": "^16.6.0",
"graphql-tools": "^9.0.0",
"graphql-upload": "^16.0.2",
"image-size": "^1.0.2",
"joi": "^17.9.2",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"mkdirp": "^3.0.1",
"mongoose": "^7.3.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.3",
"nodemailer-smtp-transport": "^2.4.2",
"redis": "^4.6.7",
"sharp": "^0.32.1",
"shortid": "^2.2.16",
"validator": "^13.9.0",
"winston": "^3.9.0",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"@types/app-root-path": "^1.2.5",
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/express-fileupload": "^1.4.1",
"@types/file-type": "^10.9.1",
"@types/graphql-upload": "^16.0.0",
"@types/image-size": "^0.8.0",
"@types/joi": "^17.2.3",
"@types/jsonwebtoken": "^9.0.2",
"@types/lodash": "^4.14.195",
"@types/mkdirp": "^2.0.0",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.4",
"@types/multer": "^1.4.7",
"@types/newrelic__winston-enricher": "^0.1.1",
"@types/node": "^20.1.4",
"@types/nodemailer": "^6.4.8",
"@types/nodemailer-smtp-transport": "^2.7.5",
"@types/shortid": "^0.0.29",
"@types/validator": "^13.7.17",
"@types/winston": "^2.4.4",
"colors": "^1.4.0",
"dotenv": "^16.3.1",
"nodemon": "^1.14.9",
"prettier": "^2.8.8",
"typescript": "^5.1.3"
}
}