-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
112 lines (112 loc) · 3.38 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
{
"name": "my-little-bitcoin",
"version": "1.1.0",
"description": "Simple Bitcoin like crypto implementation",
"main": "src/index.js",
"scripts": {
"start": "cross-env DEBUG=app* nodemon src/index.js",
"start2": "cross-env DEBUG=app* HTTP_PORT=3002 P2P_PORT=6002 PEERS=ws://localhost:6001 nodemon src/index.js",
"start3": "cross-env DEBUG=app* HTTP_PORT=3003 P2P_PORT=6003 PEERS=ws://localhost:6001,ws://localhost:6002 nodemon src/index.js",
"demo": "cross-env DEMO=true DEBUG=app* nodemon src/index.js",
"dev": "webpack --progress --colors --config build/webpack.dev.config.js",
"prod": "webpack --progress --colors --config build/webpack.prod.config.js",
"test": "./node_modules/.bin/mocha --recursive --require @babel/register",
"lint": "eslint --fix --ext .js,.vue src test/unit/specs test/e2e/specs"
},
"author": "Vedmant",
"license": "MIT",
"dependencies": {
"@sentry/node": "5.7.0",
"axios": "^0.27.2",
"body-parser": "^1.18.3",
"bootstrap": "^4.3.1",
"bootstrap-vue": "^2.21.2",
"bs58": "^4.0.1",
"co": "^4.6.0",
"crypto-js": "^3.1.9-1",
"debug": "^4.1.0",
"dotenv": "^8.0.0",
"express": "^4.16.4",
"express-winston": "^3.0.1",
"joi": "^14.3.0",
"jquery": "^3.4.1",
"lodash": "^4.17.19",
"moment-mini": "^2.22.1",
"octicons": "^8.2.0",
"secp256k1": "^3.5.2",
"socket.io": "^2.4.0",
"socket.io-client": "^2.2.0",
"tiny-worker": "^2.1.2",
"vue": "^2.5.21",
"vue-loader": "^15.4.2",
"vue-router": "^3.0.2",
"vuex": "^3.0.1",
"winston": "^3.1.0",
"ws": "^6.1.2"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/node": "^7.2.2",
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/register": "^7.4.0",
"@babel/runtime": "^7.4.3",
"autoprefixer": "^7.1.2",
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"chai-http": "^3.0.0",
"chalk": "^2.0.1",
"connect-history-api-fallback": "^1.3.0",
"copy-webpack-plugin": "^5.1.2",
"cross-env": "^5.0.1",
"cross-spawn": "^5.0.1",
"css-loader": "^5.1.1",
"cssnano": "^3.10.0",
"eslint": "^4.4.1",
"eslint-config-standard": "^10.2.1",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-html": "^3.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^1.6.2",
"mocha": "^6.0.2",
"nodemon": "^2.0.15",
"sass": "^1.51.0",
"sass-loader": "^10.1",
"sinon": "^2.1.0",
"sinon-chai": "^2.8.0",
"stats-webpack-plugin": "^0.7.0",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"vue-html-loader": "^1.2.4",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.5.21",
"webpack": "^4.27.1",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^3.1.2",
"webpack-dev-middleware": "^3.4.0",
"webpack-dev-server": "^3.1.10",
"webpack-hot-middleware": "^2.24.3",
"webpack-merge": "^4.1.5"
},
"engines": {
"node": ">= 16.0.0",
"yarn": ">= 1.22.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"nodemonConfig": {
"watch": [
"src/*"
]
}
}