-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
92 lines (92 loc) · 2.99 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "dm3-react",
"version": "0.2.12",
"main": "./dist/cjs/index.js",
"module": "./dist/cjs/inedx.js",
"dependencies": {
"@babel/core": "^7.22.5",
"@fortawesome/fontawesome-free": "^5.15.4",
"@metamask/detect-provider": "^1.2.0",
"@popperjs/core": "^2.11.8",
"@testing-library/dom": "^9.3.1",
"axios": "^0.25.0",
"bootstrap": "5.1.3",
"dm3-lib-crypto": "workspace:^",
"dm3-lib-delivery-api": "workspace:^",
"dm3-lib-messaging": "workspace:^",
"dm3-lib-offchain-resolver-api": "workspace:^",
"dm3-lib-profile": "workspace:^",
"dm3-lib-shared": "workspace:^",
"dm3-lib-storage": "workspace:^",
"ethereum-blockies-base64": "^1.0.2",
"ethers": "5.7.2",
"googleapis": "^100.0.0",
"localforage": "^1.10.0",
"nacl": "^0.1.3",
"postcss": "^8.4.24",
"react-beforeunload": "^2.5.2",
"react-chat-widget": "^3.1.4",
"react-scripts": "5.0.0",
"ts-node": "^10.4.0",
"tslib": "^2.5.2",
"typescript": "^4.4.2",
"uuid": "^8.3.2",
"web-vitals": "^2.1.0",
"web3.storage": "^3.5.7"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.3",
"@rollup/plugin-url": "^7.0.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.2.1",
"@types/bootstrap": "^5.2.6",
"@types/cors": "^2.8.12",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.13",
"@types/react": "^17.0.20",
"@types/react-beforeunload": "^2.1.1",
"@types/react-dom": "^17.0.9",
"esbuild": "^0.14.44",
"prettier": "^2.6.2",
"rollup": "^2.75.6",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-esbuild": "^4.9.1",
"rollup-plugin-import-css": "^3.0.3",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.32.1",
"ts-json-schema-generator": "^0.98.0"
},
"scripts": {
"build": "rollup -c",
"lint": "eslint '*/**/*.{js,ts,tsx}' --fix",
"format": "prettier --write '*/**/*.{js,ts,tsx,json}'",
"format:check": "prettier --check '*/**/*.{js,ts,tsx,json}'",
"test": "echo 'no tests'"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"collectCoverageFrom": [
"src/lib/**/*.{js,jsx,ts,tsx}"
]
}
}