-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.43 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
{
"name": "hive",
"version": "1.0.0",
"description": "",
"main": "index.html",
"author": "draho.cz",
"license": "ISC",
"dependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"socket.io-client": "^2.2.0"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@sentry/webpack-plugin": "^1.9.2",
"babel-loader": "^8.0.6",
"webpack": "^4.33.0",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.7.2"
},
"scripts": {
"build": "webpack --config=webpack.config.js --mode development",
"start": "webpack-dev-server --config=webpack.config.js",
"test": "echo \"Error: no test specified\" && exit 1",
"heroku:deploy": "git subtree push --prefix backend/ heroku master"
},
"repository": {
"type": "git",
"url": "git+https://github.com/drahoslove/hive.git"
},
"bugs": {
"url": "https://github.com/drahoslove/hive/issues"
},
"homepage": "https://drahoslove.github.io/hive",
"babel": {
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": "usage",
"debug": true
}
]
],
"plugins": [
[
"@babel/plugin-proposal-class-properties"
],
[
"@babel/plugin-syntax-dynamic-import"
]
]
},
"browserslist": [
"> .05% in CZ and not ie <= 9"
]
}