-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.07 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
{
"license": "UNLICENSED",
"scripts": {
"start": "webpack serve --config ./webpack/webpack.config.dev",
"build": "webpack --config ./webpack/webpack.config.prod.js",
"check:types": "tsc --noEmit --project tsconfig.json",
"deploy": "yarn build && gh-pages -d dist"
},
"devDependencies": {
"css-loader": "^6.4.0",
"gh-pages": "^3.2.3",
"html-webpack-plugin": "^5.4.0",
"ts-loader": "^9.2.6",
"typescript": "^4.4.4",
"url-loader": "^4.1.1",
"vue-loader": "^15.9.8",
"vue-style-loader": "^4.1.3",
"vue-template-compiler": "^2.6.14",
"webpack": "^5.58.2",
"webpack-cli": "^4.9.0",
"webpack-dev-server": "^4.3.1",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-brands-svg-icons": "^5.15.4",
"@fortawesome/free-regular-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/vue-fontawesome": "^2.0.5",
"scroll-behavior-polyfill": "^2.0.13",
"vue": "^2.6.14",
"vue-class-component": "^7.2.6"
}
}