-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.45 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.45 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
{
"name": "ao",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"buildFront": "vue-cli-service build",
"buildBack": "npx babel src --no-babelrc --presets=env --out-dir production --copy-files",
"compile": "yarn buildFront && yarn buildBack && yarn start",
"start": "node production/server/app.js"
},
"dependencies": {
"bitcoin-core": "^2.0.0",
"bitcoinjs-lib": "^3.3.2",
"body-parser": "^1.18.2",
"cron": "^1.3.0",
"express": "^4.16.2",
"grpc": "^1.11.3",
"kefir": "^3.8.2",
"lodash": "^4.17.5",
"path": "^0.12.7",
"qrcode-generator": "^1.3.1",
"rethinkdb": "^2.3.3",
"socket.io": "^2.0.4",
"socket.io-client": "^2.0.4",
"socketio-auth": "^0.1.0",
"superagent": "^3.8.2",
"vue": "^2.5.13",
"vue-router": "^3.0.1",
"vuex": "^3.0.1",
"zmq": "^2.15.3"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.0.0-beta.6",
"@vue/cli-service": "^3.0.0-beta.6",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"pug": "^2.0.0",
"pug-loader": "^2.3.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"tape": "^4.9.0",
"vue-template-compiler": "^2.5.13"
},
"babel": {
"presets": [
"@vue/app"
]
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}