-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
45 lines (44 loc) · 1.27 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
{
"name": "pancake-nft-api",
"version": "1.0.0",
"description": "Serverless API implementation for PancakeSwap NFT Marketplace contract",
"main": "api/version.ts",
"repository": "[email protected]:pancakeswap/pancake-nft-api.git",
"author": "PancakeSwap",
"type": "module",
"license": "GPL-3.0-or-later",
"scripts": {
"format:check": "prettier --check '*/**/*.{js,ts}'",
"format:write": "prettier --write '*/**/*.{js,ts}'",
"lint": "eslint '*/**/*.{js,ts}'",
"prepare": "husky install"
},
"engines" : {
"node" : ">=18.0.0"
},
"dependencies": {
"@types/lodash": "^4.14.173",
"@types/mongoose-paginate-v2": "^1.4.0",
"axios": "^0.21.4",
"dotenv": "^10.0.0",
"ethers": "^6.0.8",
"lodash": "^4.17.21",
"mongoose": "5.13.0",
"mongoose-paginate-v2": "1.4.2",
"param-case": "^3.0.4"
},
"devDependencies": {
"@commitlint/cli": "^13.0.0",
"@commitlint/config-conventional": "^13.0.0",
"@types/node": "^18.0.5",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"@vercel/node": "^5.0.2",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.0",
"prettier": "^3.3.2",
"ts-node": "^10.0.0",
"typescript": "^4.7.4"
}
}