-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
42 lines (42 loc) · 1.34 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
{
"name": "MeteoNook",
"version": "0.0.1",
"main": "index.js",
"license": "AGPL-3.0-only",
"devDependencies": {
"@vue/component-compiler-utils": "^3.1.2",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.6.0",
"html-webpack-plugin": "^4.3.0",
"mini-css-extract-plugin": "^0.9.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"sass": "^1.26.9",
"sass-loader": "^8.0.2",
"terser-webpack-plugin": "^3.0.6",
"ts-loader": "^7.0.5",
"typescript": "^3.9.5",
"vue-loader": "^15.0.0",
"vue-template-compiler": "^2.6.11",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"@wasm-tool/wasm-pack-plugin": "^1.3.1",
"bootstrap": "^4.5.0",
"bootstrap-vue": "^2.15.0",
"copy-webpack-plugin": "^6.0.2",
"vue": "^2.6.11",
"vue-class-component": "^7.2.3",
"vue-hot-reload-api": "^2.3.4",
"vue-i18n": "^8.18.2",
"vue-property-decorator": "^9.0.0",
"webpack": "^4.43.0",
"webpack-dev-server": "^3.11.0"
},
"scripts": {
"build": "npx webpack --config webpack.config.js",
"dev": "npx webpack-dev-server -d",
"devOpen": "npx webpack-dev-server -d --host \"0.0.0.0\"",
"test": "npx webpack --config webpack.config.test.js && node distTest/index.js",
"testFast": "npx webpack --config webpack.config.test.js --mode production && node distTest/index.js"
}
}