-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.15 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": "treasure-functions",
"version": "1.0.0",
"description": "Serverless functions for the Treasure ecosystem",
"author": "",
"license": "ISC",
"scripts": {
"format": "prettier --write .",
"lint": "eslint '**/*.{ts,js}'",
"test": "vitest run",
"test:watch": "vitest",
"deploy": "serverless deploy",
"build": "tsc",
"typecheck": "tsc --noEmit",
"prepare": "husky"
},
"dependencies": {
"@solana/web3.js": "^1.98.0",
"axios": "^1.1.3",
"viem": "^2.21.6"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^5.2.0",
"@types/aws-lambda": "^8.10.147",
"@types/node": "^22.13.9",
"@typescript-eslint/eslint-plugin": "^8.26.0",
"@typescript-eslint/parser": "^8.26.0",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.0.0",
"serverless": "^3.22.0",
"serverless-plugin-typescript": "^2.1.5",
"vitest": "^1.3.1",
"typescript": "^5.8.2"
},
"lint-staged": {
"*": "prettier --write",
"**/*.{js,ts}": "eslint --fix --quiet"
},
"engines": {
"node": ">=22"
}
}