-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 919 Bytes
/
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
{
"name": "new-e-commerce",
"version": "1.0.0",
"description": "e-commerce-platform using graphqa",
"main": "index.js",
"repository": "https://github.com/Aravind-art/new-e-commerce.git",
"author": "Aravind Muthuraman <[email protected]>",
"license": "MIT",
"scripts": {
"test": "echo 'Running Text'",
"dev": "nodemon ./index.js --exec babel-node",
"start": "node server.js"
},
"dependencies": {
"@apollo/server": "^4.1.1",
"@graphql-tools/schema": "^9.0.9",
"body-parser": "^1.20.1",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"dotenv-expand": "^9.0.0",
"express": "^4.18.2",
"express-graphql": "^0.12.0",
"graphql": "^16.6.0",
"graphql-import-node": "^0.0.5",
"mongoose": "^6.7.2"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/node": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"nodemon": "^2.0.20"
}
}