-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
52 lines (52 loc) · 1.69 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
{
"name": "proof-generation-api",
"version": "0.0.1",
"description": "Generates Proof to be used while withdrawing assets from Polygon to Ethereum",
"main": "index.js",
"private": true,
"scripts": {
"dev": "node src/index.js",
"dev-checkpoint": "node src/helpers/checkpoint-cronjob.js",
"checkpoint": "node src/helpers/checkpoint-cronjob.js",
"start": "node src/index.js",
"lint": "eslint src/*.js src/**/*.js",
"lint:fix": "eslint --fix src/*.js src/**/*.js test/*.js",
"test": "mocha --timeout 30000"
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/maticnetwork/proof-generation-api.git"
},
"author": "Rahul Prabhu <rahul.prabhu@polygon.technology>",
"license": "ISC",
"dependencies": {
"@maticnetwork/maticjs": "^3.7.7",
"@maticnetwork/maticjs-web3": "^1.0.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"esm": "^3.2.25",
"express": "^4.17.1",
"express-list-endpoints": "^6.0.0",
"helmet": "^4.6.0",
"pre-commit": "^1.2.2",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-express": "^4.5.0",
"winston": "^3.3.3",
"winston-transport-sentry-node": "^2.6.0"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^10.0.0"
}
}