-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 771 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 771 Bytes
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
{
"name": "cart-server",
"version": "1.0.0",
"description": "Cart management with session management and graphql",
"main": "./src/index.js",
"author": "umesh mahato",
"license": "MIT",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon ./src/index.js --exec babel-node -e js"
},
"devDependencies": {
"@types/node": "^18.7.14",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-0": "^6.24.1"
},
"dependencies": {
"apollo-server-express": "^3.10.2",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"graphql": "^16.6.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.4",
"mongodb": "^4.9.1",
"mongoose": "^6.5.4",
"nodemon": "^2.0.19"
}
}