-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
50 lines (50 loc) · 1.43 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
{
"name": "pancake-profile-api",
"version": "1.2.1",
"description": "Serverless API implementation for PancakeSwap Profile contract",
"main": "api/version.ts",
"repository": "[email protected]:pancakeswap/pancake-profile-api.git",
"author": "PancakeSwap",
"license": "GPL-3.0-or-later",
"scripts": {
"format:check": "prettier --check '*/**/*.{js,ts}'",
"format:write": "prettier --write '*/**/*.{js,ts}'",
"lint": "echo 'no'",
"test": "vitest --run --globals",
"test:coverage": "jest --coverage"
},
"husky": {
"hooks": {
"pre-commit": "yarn format:check",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"@types/json2csv": "^5.0.3",
"ethers": "^5.4.0",
"graphql": "^15.5.0",
"graphql-request": "^3.5.0",
"json2csv": "^5.0.6",
"mongoose": "^5.13.0",
"viem": "^2.9.17"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/jest": "^26.0.23",
"@types/node": "^15.12.5",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"@vercel/node": "^1.12.0",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.3.6",
"husky": "^4.3.8",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"typescript": "^5.4.5",
"vitest": "^1.5.0"
}
}