-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.27 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
{
"name": "cardkho",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "node server.js",
"backend": "nodemon server.js",
"frontend": "npm run start --prefix client",
"dev": "concurrently \"npm run backend\" \"npm run frontend\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"author": "lord krishna",
"license": "ISC",
"dependencies": {
"apollo-server-express": "^2.16.1",
"bcryptjs": "^2.4.3",
"bufferutil": "^4.0.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-graphql": "^0.11.0",
"express-mongo-sanitize": "^2.0.0",
"express-rate-limit": "^5.1.3",
"graphql": "^15.3.0",
"graphql-tools": "^6.0.18",
"helmet": "^4.1.0",
"hpp": "^0.2.3",
"jsonwebtoken": "^8.5.1",
"merge-graphql-schemas": "^1.7.8",
"mongoose": "^5.10.0",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"sharp": "^0.25.4",
"utf-8-validate": "^5.0.2",
"util": "^0.12.3",
"validator": "^13.1.1",
"ws": "^7.3.1",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"concurrently": "^5.3.0",
"nodemon": "^2.0.4"
}
}