forked from Smuzzies/seevechain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·91 lines (91 loc) · 2.68 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
{
"name": "seevechain",
"version": "1.0.0",
"description": "Real time visualizer for the VeChain public blockchain",
"main": "index.js",
"engines": {
"node": "12.16.x"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --colors --progress --mode production",
"build:dev": "webpack --colors --progress -w",
"start:dev": "npm run build:dev & nodemon ./scripts/start",
"start": "./scripts/start",
"heroku-postbuild": "npm run build",
"db:migrate": "./scripts/db-migrate"
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "^7.0.0",
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"@vechain/connex-framework": "^1.1.2",
"@vechain/connex.driver-nodejs": "^1.2.0-beta6",
"axios": "^0.19.2",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.0.5",
"babel-plugin-transform-imports": "^2.0.0",
"bignumber.js": "^9.0.0",
"chai": "^4.2.0",
"chart.js": "^2.9.3",
"clean-webpack-plugin": "^3.0.0",
"clipboard": "^2.0.6",
"coingecko-api": "^1.0.10",
"coingecko-api-v3": "^0.0.29",
"compression": "^1.7.4",
"compression-webpack-plugin": "^3.1.0",
"cookie-parser": "^1.4.4",
"core-js": "^3.36.0",
"css-loader": "^2.1.1",
"db-migrate": "^0.11.5",
"db-migrate-pg": "^0.5.0",
"delay": "^4.3.0",
"dotenv": "^6.2.0",
"dotenv-webpack": "^1.7.0",
"eslint": "^6.6.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-react": "^7.19.0",
"express": "^4.16.4",
"fetch": "^1.1.0",
"file-loader": "^5.1.0",
"heroku-ssl-redirect": "^0.1.1",
"howler": "^2.2.0",
"html-webpack-plugin": "^4.3.0",
"js-cookie": "^2.2.1",
"knex": "^0.21.2",
"mini-css-extract-plugin": "^0.8.0",
"mocha": "^6.2.2",
"moment": "^2.24.0",
"node-cron": "^3.0.2",
"node-fetch": "^2.7.0",
"node-sass": "^4.11.0",
"nodemon": "^1.19.0",
"normalize.css": "^8.0.1",
"numeral": "^2.0.6",
"pg-promise": "^8.5.5",
"pino": "^5.17.0",
"pino-pretty": "^3.6.1",
"preact": "^10.0.0",
"prop-types": "^15.7.2",
"qrcode.react": "^1.0.0",
"querystring": "^0.2.0",
"react-chartjs-2": "^2.9.0",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"sass-loader": "^7.1.0",
"sma": "^0.1.1",
"socket.io": "^4.0.1",
"socket.io-client": "^4.0.1",
"thor-devkit": "^1.2.5",
"webpack": "^4.29.6",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.0",
"zustand": "^3.1.3"
}
}