-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.94 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "fistbump",
"version": "0.0.2",
"description": "Privacy preserving search for Handshake TLDs",
"main": "index.js",
"scripts": {
"clean": "rm dist/bundle.js",
"start": "rimraf dist && webpack --config webpack.dev.js",
"build": "rimraf dist && webpack --config webpack.prod.js"
},
"keywords": [],
"author": {
"name": "Dylan Bathurst",
"url": "https://twitter.com/dylanbathurst"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@types/react": "^16.9.26",
"@types/react-dom": "^16.9.5",
"@types/react-redux": "^7.1.7",
"@types/react-router": "^5.1.4",
"@types/react-router-dom": "^5.1.3",
"@types/redux": "^3.6.0",
"@types/redux-form": "^8.2.3",
"@types/redux-saga": "^0.10.5",
"@types/reselect": "^2.2.0",
"@types/styled-components": "^4.4.3",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "^5.1.1",
"html-webpack-plugin": "^3.2.0",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"svg-inline-loader": "^0.8.2",
"terser-webpack-plugin": "^2.3.5",
"ts-loader": "^6.2.2",
"typescript": "^3.8.3",
"webextension-polyfill-ts": "^0.12.0",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@types/ramda": "^0.26.44",
"@types/redux-logger": "^3.0.7",
"date-fns": "^2.12.0",
"hs-client": "0.0.8",
"ramda": "^0.27.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-form": "^8.3.1",
"redux-logger": "^3.0.6",
"redux-saga": "^1.1.3",
"remote-redux-devtools": "^0.5.16",
"reselect": "^4.0.0",
"styled-components": "^5.0.1",
"styled-icons": "^9.5.0"
}
}