-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.43 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
{
"name": "group-chat-app",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "cd group-chat-server && babel src --out-dir dist",
"start": "node group-chat-server/dist/index.js",
"dev": "nodemon --exec npx babel-node -r dotenv/config group-chat-server/src/index.js",
"prettier": "prettier --config ./.prettierrc --write \"**/*.js\"",
"pretest": "eslint --ignore-path .gitignore .",
"postinstall": "rm -rf group-chat-server/dist && npm run build",
"lint": "yarn prettier --write --check --config ./.prettierrc \"**/*.js\" && eslint --fix ./src",
"release": "release-it patch --no-npm.publish",
"client":"cd group-chat-ui && npm start"
},
"author": "shivam kataria",
"license": "MIT",
"dependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.5",
"@babel/node": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"apollo-engine": "^1.1.2",
"apollo-server-express": "^2.25.1",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"graphql": "^15.5.0",
"graphql-compose": "^9.0.1",
"graphql-compose-connection": "^8.2.0",
"graphql-compose-mongoose": "^9.4.1",
"graphql-middleware": "^6.0.10",
"graphql-tools": "^7.0.5",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.12.13",
"mongoose-bcrypt": "^1.9.0",
"mongoose-timestamp": "^0.6.0"
}
}