-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 990 Bytes
/
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
{
"name": "minimal-wapo-ts-starter",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "tsup --config tsup.config.ts",
"start": "docker run --rm --name wapo -p 8000:80 -v $(pwd)/dist:/home/wapo phalanetwork/wapo-devserver",
"watch": "npm-watch",
"dev": "concurrently \"npm:watch\" \"npm:start\"",
"test": "vitest",
"ci": "npm run build && vitest --coverage --run"
},
"watch": {
"build": {
"patterns": [
"src"
],
"extensions": "ts",
"quiet": false
}
},
"author": "Phala Network",
"license": "Apache-2.0",
"devDependencies": {
"@types/node": "^22.1.0",
"@vitest/coverage-v8": "^2.0.5",
"concurrently": "^9.0.1",
"npm-watch": "^0.13.0",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
},
"dependencies": {
"@hono/zod-validator": "^0.2.2",
"@phala/wapo-env": "^0.9.4",
"hono": "^4.5.4",
"viem": "^2.19.9"
}
}