-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
71 lines (71 loc) · 2.13 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
{
"name": "whale-watchers",
"version": "1.0.0",
"description": "Visualize on-chain holdings and transactions of specific users on the Ethereum blockchain.",
"main": "esources",
"scripts": {
"test": "npm test",
"start": "cross-env NODE_ENV=production node server/server.js",
"build": "cross-env NODE_ENV=production webpack",
"dev": "concurrently \"NODE_ENV=development nodemon server/server.js\" \"NODE_ENV=development webpack serve\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Whale-Watchers/whale-watchers.git"
},
"keywords": [
"etherum",
"blockchain"
],
"author": "Maxwell Shick <https://github.com/mshick97>, Jakob <https://github.com/gandalf77>",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/Whale-Watchers/whale-watchers/issues"
},
"homepage": "https://github.com/Whale-Watchers/whale-watchers#readme",
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"babel-loader": "^8.2.5",
"cheerio": "^1.0.0-rc.11",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"html-webpack-plugin": "^5.5.0",
"json-loader": "^0.5.7",
"redux-devtools-extension": "^2.13.9",
"sass": "^1.52.2",
"sass-loader": "^13.0.0",
"style-loader": "^3.3.1",
"supertest": "^6.2.3",
"url-loader": "^4.1.1",
"webpack-cli": "^4.9.2",
"webpack-config": "^7.5.0",
"webpack-dev-server": "^4.9.2"
},
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@mui/material": "^5.8.3",
"axios": "^0.27.2",
"concurrently": "^7.2.1",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"node-fetch": "^1.7.3",
"nodemon": "^2.0.16",
"pg": "^8.7.3",
"plotly.js": "^2.12.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-gif-loader": "^0.6.0",
"react-hot-loader": "^4.13.0",
"react-plotly.js": "^2.5.1",
"react-redux": "^8.0.2",
"react-router-dom": "^6.3.0",
"react-scripts": "^5.0.1",
"redux-thunk": "^2.4.1",
"uuid": "^8.3.2",
"webpack": "^5.73.0"
}
}