-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
90 lines (90 loc) · 3.03 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
{
"name": "cudos-bridge-ui",
"version": "0.0.1",
"description": "CudosBridgeUI",
"private": true,
"license": "ISC",
"scripts": {
"dev": "node ./tools/builder/Main.js -target=dev",
"prod": "export ENV_FILENAME=.env.production|| set ENV_FILENAME=.env.production&& node ./tools/builder/Main.js -target=prod",
"create-migration": "node ./src/backend/db/cli/CreateMigration.js",
"dev-migrate-db": "node ./tools/builder/Main.js -target=dev -start-server=0 -webpack=0 -server=0 -watch=0&& node ./builds/dev/src/backend/db/cli/ExecuteMigrations.js",
"migrate-db": "node ./src/backend/db/cli/ExecuteMigrations.js"
},
"engines": {
"node": ">=12"
},
"dependencies": {
"@cosmjs/encoding": "^0.25.5",
"@cosmjs/launchpad": "^0.27.1",
"@cosmjs/proto-signing": "^0.28.4",
"@cosmjs/stargate": "^0.28.4",
"@koa/cors": "^3.3.0",
"aes-js": "^3.1.2",
"bignum": "^0.13.1",
"chokidar": "^3.5.2",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"js-sha256": "^0.9.0",
"koa": "^2.13.0",
"koa-bodyparser": "^4.3.0",
"koa-router": "^10.0.0",
"koa-session": "^6.1.0",
"marko": "^4.23.9",
"mysql": "^2.18.1",
"node": "^14.19.1",
"node-fetch": "^3.2.0",
"react-helmet": "^6.1.0",
"redis": "^3.0.2",
"source-map-support": "^0.5.19",
"web3": "^1.4.0",
"web3-utils": "^1.4.0",
"winston": "^3.3.3",
"cudosjs": "1.3.5"
},
"devDependencies": {
"@babel/cli": "^7.12.7",
"@babel/core": "^7.12.7",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-decorators": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/plugin-transform-modules-commonjs": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@types/mysql": "^2.15.17",
"@types/node": "^14.14.9",
"@types/react-datepicker": "^3.1.1",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.1",
"browserslist": "^4.14.7",
"core-js": "^3.7.0",
"css-loader": "^5.0.1",
"eslint": "^7.14.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-react": "^7.21.5",
"html-webpack-plugin": "^4.5.0",
"mini-css-extract-plugin": "^1.3.1",
"mobx": "^6.0.4",
"mobx-react": "^7.0.5",
"moment": "^2.0.0",
"node-watch": "^0.7.0",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"prop-types": "^15.7.2",
"raw-loader": "^4.0.2",
"react": "^16.14.0",
"react-datepicker": "^3.3.0",
"react-dom": "^16.14.0",
"react-select": "^3.1.0",
"typescript": "^4.1.2",
"webpack": "^4.44.2"
}
}