-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
37 lines (37 loc) · 852 Bytes
/
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
{
"name": "painco",
"description": "online multiplayer virtual piano",
"author": "Drahoslav Bednář",
"license": "MIT",
"main": "index.html",
"scripts": {
"build": "webpack --config=webpack.config.js --mode development",
"start": "http-server -a 0.0.0.0 -p 80"
},
"devDependencies": {
"@babel/core": "^7.17.12",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.17.12",
"@sentry/webpack-plugin": "^1.18.8",
"babel-loader": "^8.2.5",
"http-server": "^14.1.0",
"webpack": "^5.76.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.0"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": "usage",
"debug": true
}
]
],
"plugins": []
},
"browserslist": [
"> .05% in CZ and not ie <= 9"
]
}