-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.18 KB
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": "helia-webpack",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "Bundle Helia with Webpack",
"keywords": [],
"license": "MIT",
"scripts": {
"clean": "rimraf ./dist",
"build": "webpack --env production",
"serve": "webpack serve --mode=development",
"start": "npm run serve",
"test": "npm run build && test-browser-example test"
},
"browserslist": [
"last 1 Chrome version"
],
"dependencies": {
"@helia/unixfs": "^7.2.1",
"helia": "^6.1.2",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.12",
"@babel/preset-react": "^7.12.13",
"@playwright/test": "^1.12.3",
"babel-loader": "^10.1.1",
"copy-webpack-plugin": "^14.0.0",
"css-loader": "^7.1.2",
"html-webpack-plugin": "^5.3.2",
"node-polyfill-webpack-plugin": "^4.0.0",
"node-stdlib-browser": "^1.3.1",
"playwright": "^1.12.3",
"rimraf": "^6.0.1",
"style-loader": "^4.0.0",
"test-ipfs-example": "^1.3.3",
"webpack": "^5.45.1",
"webpack-cli": "^7.0.2",
"webpack-dev-server": "^5.0.3",
"webpack-merge": "^6.0.1"
}
}