-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.39 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "elmo",
"version": "1.0.0",
"description": "ELMO",
"main": "index.js",
"scripts": {
"build": "webpack --config webpack.prod.js",
"dev": "webpack -w --progress --config webpack.dev.js",
"test": "jest --config=jest.config.js",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --quiet",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"p": "prettier --write \"src/**/*.ts*\"",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"star-signal": "star-signal",
"start": "dotenv -- concurrently \"yarn dev\" \"yarn star-signal\""
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/woss_io/elmo.git"
},
"keywords": [
"react",
"typescript",
"chrome",
"extension",
"boilerplate"
],
"author": "Daniel Maricic",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/woss_io/elmo/-/issues"
},
"homepage": "https://gitlab.com/woss_io/elmo#readme",
"devDependencies": {
"@types/chrome": "^0.0.128",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.21",
"@types/ramda": "^0.27.34",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"concurrently": "^5.3.0",
"copy-webpack-plugin": "^7.0.0",
"css-loader": "^5.0.1",
"dotenv-cli": "^4.0.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-json": "^2.1.2",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"node-polyfill-webpack-plugin": "^1.1.4",
"prettier": "^2.2.1",
"prettier-eslint": "^13.0.0",
"ts-loader": "^9.2.6",
"typescript": "^4.4.3",
"webpack": "^5.53.0",
"webpack-build-notifications": "^0.3.2",
"webpack-build-notifier": "^2.3.0",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.8.0",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@ipld/dag-cbor": "^6.0.10",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.11.3-deprecations.1",
"bn.js": "^5.2.0",
"chrome-dgram": "^3.0.6",
"chrome-net": "^3.3.4",
"clsx": "^1.1.1",
"dot-prop": "^6.0.1",
"events": "^3.2.0",
"fuse.js": "^6.4.6",
"history": "^5.0.1",
"http-dns": "^3.0.1",
"http-node": "^1.2.0",
"ipfs": "0.58.6",
"ipfs-pubsub-room": "^2.0.1",
"iso-url": "^1.1.5",
"it-pipe": "^1.1.0",
"libp2p": "^0.32.5",
"libp2p-bootstrap": "^0.13.0",
"libp2p-kad-dht": "^0.24.2",
"libp2p-mdns": "^0.17.0",
"libp2p-mplex": "^0.10.4",
"libp2p-secio": "^0.13.1",
"libp2p-spdy": "^0.13.3",
"libp2p-tcp": "^0.17.2",
"libp2p-webrtc-star": "^0.23.0",
"libp2p-websockets": "^0.16.1",
"multiaddr": "^10.0.1",
"multiformats": "^9.4.7",
"nanoid": "^3.1.20",
"node-notifier": "^10.0.0",
"notistack": "^1.0.10",
"orbit-db": "^0.26.1",
"pull-stream": "^3.6.14",
"ramda": "^0.27.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-raw-html": "^0.4.0",
"react-router-dom": "5.3.0",
"react-test-renderer": "17.0.2",
"readable-stream": "^3.6.0",
"slug": "^5.1.0",
"streaming-iterables": "^6.0.0",
"uri-to-multiaddr": "^6.0.0",
"webextension-polyfill": "^0.8.0",
"webrtc-ips": "^0.2.0",
"wrtc": "^0.4.7"
}
}