-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.52 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.52 KB
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
{
"name": "elaichi",
"version": "1.0.0",
"description": "Backend Repository | Avenue for NITR",
"main": "index.js",
"scripts": {
"doc": "jsdoc -c jsdoc.json -r",
"prettier": "npx prettier --write .",
"prettier:check": "npx prettier --check .",
"eslint": "npx eslint",
"eslint:fix": "npx eslint --fix",
"start": "npx pm2 start ecosystem.config.js --only dev --no-autorestart",
"stop": "npx pm2 stop ecosystem.config.js --only dev",
"delete": "npx pm2 delete ecosystem.config.js --only dev",
"restart": "npx pm2 restart ecosystem.config.js --only dev",
"logs": "npx pm2 logs",
"status": "npx pm2 ps",
"start:prod": "pm2-runtime start ecosystem.config.js --only prod --env production",
"test": "cross-env NODE_ENV=test jest --runInBand --coverage",
"test:watch": "cross-env NODE_ENV=test --runInBand --watch"
},
"author": "dscnitrourkela",
"license": "ISC",
"dependencies": {
"apollo-datasource": "^0.7.2",
"apollo-server": "^2.19.1",
"dotenv": "^8.2.0",
"firebase-admin": "^9.4.2",
"graphql": "^15.4.0",
"graphql-iso-date": "^3.6.1",
"mongoose": "^5.11.10",
"node-cache": "^5.1.2"
},
"devDependencies": {
"apollo-server-testing": "^2.19.2",
"cross-env": "^7.0.3",
"eslint": "^7.19.0",
"eslint-config-prettier": "^6.15.0",
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"jest-environment-node": "^26.6.2",
"jsdoc": "^3.6.6",
"mongodb-memory-server": "^6.9.3",
"pm2": "^4.5.5",
"prettier": "2.2.0"
},
"jest": {
"testEnvironment": "node",
"coverageDirectory": "../coverage"
}
}