-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.95 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
{
"name": "livestream-service",
"version": "1.0.0",
"description": "Python service for livestream events distribution between event producers and consumers",
"author": "Josef Kolář <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development webpack --watch",
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"run:dev": "cross-env NODE_ENV=development webpack-dev-server --hot --port 9001"
},
"dependencies": {
"babel-engine-plugin": "^0.2.1",
"bootstrap-loader": "^2.2.0",
"bootstrap-vue": "^2.0.0-rc.2",
"camelcase-keys": "^4.2.0",
"jquery": "^3.3.1",
"lodash": "^4.17.5",
"raven-js": "^3.24.0",
"state-machine": "^1.0.3",
"vue": "^2.5.11",
"vue-cookie": "^1.1.4",
"vue-loading-template": "^0.1.7",
"vue-native-websocket": "^2.0.6",
"vue-resource": "^1.5.0",
"vue-router": "^3.0.1",
"vue-toastr": "^2.0.12",
"vuex": "^3.0.1",
"vuex-router-sync": "^5.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-2": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"bootstrap": "^4.0.0",
"cross-env": "^5.0.5",
"css-loader": "^0.28.11",
"exports-loader": "^0.7.0",
"file-loader": "^1.1.4",
"imports-loader": "^0.8.0",
"node-sass": "^4.8.3",
"postcss-loader": "^2.1.3",
"resolve-url-loader": "^2.3.0",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.3",
"uglifyjs-webpack-plugin": "^1.0.0-beta.3",
"url-loader": "^1.0.1",
"vue-loader": "^13.0.5",
"vue-particles": "^1.0.9",
"vue-template-compiler": "^2.4.4",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.9.1"
}
}