-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.32 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
{
"name": "dappykit-vercel-frame-example",
"private": true,
"type": "module",
"scripts": {
"prepare": "cp -f ./emptyModule.cjs.js ./node_modules/@dappykit/sdk/dist/emptyModule.js",
"build": "npm run prepare && frog vercel-build",
"dev": "npm run prepare && APP_TITLE='test app' APP_OWNER_FID=123 APP_ADDRESS=0x293F70729Ca2b9Fb4cC9994F03517A4b90743bf6 APP_PK=0x128e6a3d1985334ea6ad31e32bd9db4fb600abed59c68b14bdf97c26546e63c9 APP_AUTH_URL=https://google.com APP_SHARE_URL=https://yahoo.com frog dev",
"deploy": "vercel",
"lint:check": "eslint \"api/**/*.ts\" && prettier --check \"api/**/*.ts\"",
"check:types": "tsc --project tsconfig.json",
"test": "jest"
},
"dependencies": {
"@dappykit/sdk": "^2.8.0",
"@vercel/kv": "^1.0.1",
"frog": "^0.11.4",
"hono": "^4"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.12.12",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unused-imports": "^3.1.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.4",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"vercel": "^32.4.1"
},
"engines": {
"node": ">=18"
}
}