-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.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
{
"name": "web-tv",
"version": "1.0.0",
"outputFormat": "esmodule",
"targets": {
"browser": {
"source": "src/index.html",
"distDir": "dist",
"outputFormat": "esmodule",
"includeNodeModules": true,
"optimize": true,
"sourceMap": false
}
},
"staticFiles": {
"staticPath": "src/static"
},
"scripts": {
"start": "parcel serve src/index.html -p 4200",
"build": "parcel build",
"test-build": "npx http-server ./dist/browser -p 4200 -c-1",
"predeploy": "rm -rf ./dist/browser && parcel build --public-url https://vcamelblue2.github.io/cle-js-apps--web-tv/",
"deploy": "gh-pages -d ./dist/browser"
},
"dependencies": {
"cle.js": "~0.14.9",
"csz": "^1.2.0"
},
"devDependencies": {
"@parcel/resolver-glob": "^2.9.3",
"@parcel/transformer-inline-string": "^2.9.3",
"parcel": "~2.9.3",
"parcel-reporter-static-files-copy": "^1.5.0",
"process": "^0.11.10",
"gh-pages": "^5.0.0"
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
],
"babel": {
"presets": [
"@babel/preset-env"
]
},
"terser": {
"mangle": {
"reserved": [
"$"
]
}
}
}