-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.25 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
{
"name": "vuejs-and-typescript-chrome-extention-template",
"description": "Vue.js and TypeScript Chrome Extension template",
"version": "1.0.0",
"author": "rika-t",
"license": "MIT",
"private": false,
"scripts": {
"watch": "npm-run-all --parallel watch:*",
"watch:typescript": "tsc -w --preserveWatchOutput",
"watch:webpack": "webpack --mode development --hide-modules --progress --watch",
"build:dev": "webpack --mode development --hide-modules",
"build:prod": "webpack --mode production --hide-modules -p --progress --colors"
},
"dependencies": {
"element-ui": "^2.12.0",
"vue": "^2.6.10",
"vue-router": "^3.1.3"
},
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.4",
"css-loader": "^3.2.0",
"file-loader": "^4.2.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.8.0",
"npm-run-all": "^4.1.5",
"sass": "^1.22.12",
"sass-loader": "^8.0.0",
"ts-loader": "^6.1.0",
"typescript": "^3.6.3",
"url-loader": "^2.1.0",
"vue-loader": "^15.7.1",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.40.2",
"webpack-cli": "^3.3.8",
"zip-webpack-plugin": "^3.0.0"
}
}