forked from rileymd88/qlik-bex-plugin
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 1.17 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
{
"name": "qlik-bex-plugin",
"version": "0.0.2",
"scripts": {
"build": "webpack",
"start": "webpack-dev-server --output-public-path=/build/",
"build-webpack": "qext-scripts -b",
"watch-webpack": "qext-scripts -w",
"build-vanilla": "qext-scripts -B",
"watch-vanilla": "qext-scripts -W",
"deploy-server": "qext-scripts -d",
"deploy-desktop": "qext-scripts -D",
"build-webpack-deploy-server": "qext-scripts -b -d",
"watch-webpack-deploy-server": "qext-scripts -w -d",
"build-webpack-deploy-desktop": "qext-scripts -b -D",
"watch-webpack-deploy-desktop": "qext-scripts -w -D",
"build-vanilla-deploy-server": "qext-scripts -B -d",
"watch-vanilla-deploy-server": "qext-scripts -W -d",
"build-vanilla-deploy-desktop": "qext-scripts -B -D",
"watch-vanilla-deploy-desktop": "qext-scripts -W -D"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.3",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"qext-scripts": "^0.5.0",
"webpack": "^4.22.0",
"webpack-dev-server": "^2.9.5"
},
"dependencies": {
"jquery": "^3.4.0"
}
}