-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.04 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "example-browser-create-react-app",
"version": "1.0.0",
"private": true,
"description": "A minimal demonstration of how to use js-ipfs in a `create-react-app` generated app.",
"license": "MIT",
"scripts": {
"clean": "rimraf ./build",
"build": "react-scripts build",
"eject": "react-scripts eject",
"start": "react-scripts start",
"test:react": "react-scripts test",
"test": "npm run build && playwright test tests"
},
"browserslist": {
"production": [
">0.2%",
"not ie <= 99",
"not android <= 4.4.4",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"dependencies": {
"@babel/core": "^7.14.8",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@material-ui/core": "^4.12.4",
"@material-ui/styles": "^4.11.5",
"@mui/material": "^5.6.4",
"@mui/styles": "^5.6.2",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"audiobuffer-to-wav": "^1.0.0",
"dot-prop": "^7.1.1",
"ipfs-core": "^0.14.0",
"ipfs-css": "^1.3.0",
"ipfs-utils": "^9.0.2",
"ipns": "^0.16.0",
"it-all": "^1.0.6",
"it-last": "^1.0.6",
"libp2p-crypto": "^0.21.2",
"libp2p-websockets": "^0.16.1",
"lodash": "^4.17.21",
"multiformats": "^9.6.4",
"node-polyfill-webpack-plugin": "^1.1.4",
"p-retry": "^5.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0",
"react-scripts": "5.0.0",
"tachyons": "^4.12.0",
"uint8arrays": "^3.0.0",
"utils": "^0.3.1",
"web-vitals": "^2.1.2"
},
"devDependencies": {
"@playwright/test": "^1.12.3",
"go-ipfs": "^0.11.0",
"ipfsd-ctl": "^10.0.3",
"playwright": "^1.12.3",
"rimraf": "^3.0.2",
"test-util-ipfs-example": "^1.0.2",
"util": "^0.12.4"
}
}