-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.5 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.5 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
52
53
54
{
"name": "graphql_offchain",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --runInBand --detectOpenHandles --forceExit",
"prestart": "./node_modules/.bin/knex migrate:latest --env development --knexfile src/database/knexfile.js",
"start": "pm2 reload ecosystem.config.js",
"dev": "nodemon index.js",
"poststart": "pm2 logs",
"knex": "./node_modules/.bin/knex --knexfile src/database/knexfile.js",
"make-migration": "npm run knex migrate:latest --knexfile src/database/knexfile.js"
},
"author": "Nikola_Shrutika",
"license": "BSD-2-Clause",
"engines": {
"node": ">= 14.0.0",
"npm": ">= 5.0.0"
},
"dependencies": {
"apollo-server": "^3.6.5",
"apollo-server-core": "^3.6.7",
"axios": "^0.27.2",
"babel-preset-env": "^1.7.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"env-cmd": "^10.1.0",
"ethers": "^5.6.2",
"express": "^4.17.3",
"express-graphql": "^0.12.0",
"find-config": "^1.0.0",
"graphql": "^15.8.0",
"graphql-middleware": "^6.1.21",
"graphql-tools": "^8.2.3",
"jsonwebtoken": "^8.5.1",
"knex": "^1.0.4",
"newrelic": "^8.9.1",
"node-cron": "^3.0.0",
"nodemon": "^2.0.15",
"pg": "^8.7.3",
"uuid": "^8.3.2",
"web3": "^1.7.3",
"winston": "^3.6.0"
},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"codecov": "^3.8.3",
"coverage": "^0.4.1",
"jest": "^27.5.1",
"supertest": "^6.2.2"
}
}