generated from ipfs-examples/example-fork-go-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 838 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
{
"name": "example-http-client-name-api",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "",
"license": "MIT",
"author": "Tara Vancil <[email protected]>",
"scripts": {
"clean": "rimraf ./dist ./.cache ./node_modules/.vite",
"build": "vite build",
"serve": "vite dev --port 8888",
"start": "npm run serve",
"test": "npm run build && playwright test tests"
},
"browserslist": "last 1 Chrome version",
"dependencies": {
"ipfs-http-client": "^58.0.0",
"kubo-rpc-client": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@playwright/test": "^1.12.3",
"go-ipfs": "^0.15.0",
"playwright": "^1.12.3",
"process": "^0.11.10",
"rimraf": "^3.0.2",
"test-util-ipfs-example": "^1.0.2",
"util": "^0.12.4",
"vite": "^3.1.0"
}
}