-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.62 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "cipay-backend",
"version": "1.1.0",
"description": "Pay in BRL with your crypto.",
"author": "Visus",
"scripts": {
"start:optimism-kovan": "env-cmd -f ./.env.optimism-kovan ts-node --transpile-only --files -r dotenv-safe/config src/index.ts",
"start:arbitrum-rinkeby": "env-cmd -f ./.env.arbitrum-rinkeby ts-node --transpile-only --files -r dotenv-safe/config src/index.ts",
"start:arbitrum": "env-cmd -f ./.env.arbitrum ts-node --transpile-only --files -r dotenv-safe/config src/index.ts",
"generate-brcode": "node -r dotenv-safe/config tools/generate-brcode",
"lint:eslint": "eslint . --ext .ts,.tsx",
"lint:prettier": "prettier --config .prettierrc 'src/**/*.ts' --check",
"lint:secrets": "secretlint \"**/*\"",
"lint": "npm run lint:eslint && npm run lint:prettier && npm run lint:secrets",
"format": "prettier --config .prettierrc 'src/**/*.ts' --write && eslint . --ext .ts,.tsx --fix",
"release": "standard-version"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@secretlint/secretlint-rule-preset-recommend": "^2.1.1",
"@secretlint/secretlint-rule-secp256k1-privatekey": "^2.1.1",
"@typescript-eslint/eslint-plugin": "~4.7.0",
"@typescript-eslint/parser": "~4.7.0",
"env-cmd": "^10.1.0",
"eslint": "~7.13.0",
"eslint-config-prettier": "~6.15.0",
"eslint-plugin-jest": "~24.1.3",
"eslint-plugin-prettier": "^3.3.0",
"husky": "^4.3.6",
"jest": "~26.6.3",
"lint-staged": "^10.5.3",
"nodemon": "^2.0.7",
"prettier": "~2.1.2",
"rimraf": "~3.0.2",
"secretlint": "^2.1.1",
"standard-version": "^9.0.0",
"ts-jest": "~26.4.4",
"ts-node": "^9.1.1",
"tsutils": "~3.17.0",
"typescript": "^4.0.5"
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/node": "^13.13.40",
"chalk": "^4.1.1",
"cors": "^2.8.5",
"delay": "^5.0.0",
"dotenv-safe": "^8.2.0",
"ethers": "^5.0.25",
"express": "^4.17.1",
"helmet": "^4.4.1",
"mongoose": "^5.12.5",
"starkbank": "^2.10.1",
"tslib": "~2.0.3",
"winston": "^3.3.3",
"winston-transport": "^4.4.0"
},
"engines": {
"node": ">= 14.15 <15"
},
"volta": {
"node": "14.15.5",
"yarn": "1.22.10"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*": "npm run lint"
}
}