-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.11 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
{
"name": "product_management_system",
"version": "1.0.0",
"description": "A Product Management System with REST and GraphQL APIs.",
"main": "index.js",
"scripts": {
"start": "nodemon --exec babel-node src/index.js",
"dev": "nodemon --exec babel-node src/index.js",
"test": "jest --ci --detectOpenHandles",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"build": "babel src --out-dir lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PrasanthVijayy/product-management-system.git"
},
"keywords": [
"Express",
"restAPI",
"GraphQL",
"inventoryManagement",
"Redis",
"Docker",
"Sequelize"
],
"author": "PrasanthVijay",
"license": "ISC",
"bugs": {
"url": "https://github.com/PrasanthVijayy/product-management-system/issues"
},
"homepage": "https://github.com/PrasanthVijayy/product-management-system#readme",
"dependencies": {
"@graphql-tools/schema": "^10.0.6",
"apollo-server": "^3.13.0",
"apollo-server-express": "^3.13.0",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"express-rate-limit": "^7.4.0",
"graphql": "^16.9.0",
"graphql-http": "^1.22.1",
"graphql-tag": "^2.12.6",
"graphql-tools": "^9.0.1",
"helmet": "^7.1.0",
"hpp": "^0.2.3",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"mysql2": "^3.11.2",
"node-cron": "^3.0.3",
"redis": "^4.7.0",
"sequelize": "^6.37.3",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"uninstall": "^0.0.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"@babel/cli": "^7.25.6",
"@babel/core": "^7.25.2",
"@babel/node": "^7.25.0",
"@babel/preset-env": "^7.25.4",
"@testing-library/jest-dom": "^6.5.0",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"jest-html-reporter": "^3.10.2",
"jest-junit": "^16.0.0",
"jest-summary-reporter": "^0.0.2",
"nodemon": "^3.1.4",
"supertest": "^7.0.0"
}
}