-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
59 lines (59 loc) · 1.74 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
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "project-guava",
"version": "0.1.0",
"description": "The project repository for an open system to generate and manage certificates.",
"main": "index.js",
"scripts": {
"prettier:fix": "npx prettier --write .",
"prettier:check": "npx prettier --check .",
"lint:fix": "npx eslint --fix ./src",
"lint:check": "npx eslint ./src",
"start": "pm2 start ecosystem.config.js --only dev",
"start:prod": "pm2-runtime start ecosystem.config.js --only dev --env production",
"watch": "yarn start && pm2 flush && yarn logs",
"stop": "pm2 stop ecosystem.config.js --only dev",
"delete": "pm2 delete ecosystem.config.js --only dev",
"restart": "pm2 restart ecosystem.config.js --only dev",
"logs": "pm2 logs",
"status": "pm2 ps"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dscnitrourkela/project-guava.git"
},
"keywords": [
"certificate",
"graphql",
"mongo",
"nodejs",
"automate"
],
"author": "dscnitrourkela",
"license": "ISC",
"bugs": {
"url": "https://github.com/dscnitrourkela/project-guava/issues"
},
"homepage": "https://github.com/dscnitrourkela/project-guava#readme",
"dependencies": {
"apollo-server-express": "^3.3.0",
"cloudinary": "^1.27.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"firebase-admin": "^11.0.1",
"graphql": "^15.6.1",
"graphql-iso-date": "^3.6.1",
"graphql-type-json": "^0.3.2",
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^2.0.5",
"mongoose": "^6.4.6",
"node-fetch": "2.6.7",
"winston": "^3.3.3"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"pm2": "^5.1.2"
}
}