-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 998 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 998 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
30
31
32
33
34
{
"name": "graphql-chat-server",
"version": "1.0.0",
"description": "Simple apollo server for our chat app",
"main": "index.js",
"repository": "https://github.com/bijay007/chat_app.git",
"author": "Bijay Timilsina <bjtimi.007@gmail.com>",
"license": "MIT",
"scripts": {
"build": "webpack --config webpack.config.js --progress --profile --color",
"start": "node dist/server.js",
"serve": "npm run build && npm run start"
},
"dependencies": {
"bcrypt": "^5.0.1",
"chalk": "^4.1.0",
"dayjs": "^1.10.4",
"graphql-tools": "^7.0.4",
"graphql-yoga": "^1.18.3",
"mongoose": "^5.12.4",
"regenerator-runtime": "^0.13.7"
},
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/node": "^7.13.13",
"@babel/preset-env": "^7.13.15",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"eslint": "^7.25.0",
"webpack": "^5.33.2",
"webpack-cli": "^4.6.0",
"webpack-node-externals": "^2.5.2"
}
}