-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.44 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.44 KB
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
{
"name": "vuejs-boilerplate",
"version": "1.0.0",
"description": "",
"main": "src/main.ts",
"type": "module",
"scripts": {
"build": "webpack --mode production --config webpack.config.ts",
"serve": "cross-env TS_NODE_PROJECT=tsconfig.webpack.json webpack server --hot --mode development --config webpack.config.ts --open",
"lint": "eslint --fix --ext ts,tsx,vue",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"vue",
"webpack",
"typescript"
],
"author": {
"name": "leydev",
"email": "leydev.contato@gmail.com",
"url": "https://leydev.com.br"
},
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.14.0",
"@types/mini-css-extract-plugin": "^1.4.3",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"babel-loader": "^8.2.2",
"cross-env": "^7.0.3",
"css-loader": "^5.2.4",
"eslint": "^7.26.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-vue": "^7.9.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"mini-css-extract-plugin": "^1.6.0",
"ts-loader": "^8.1.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.4",
"vue-loader": "^15.9.6",
"vue-template-compiler": "^2.6.12",
"webpack": "^5.36.2",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"vue": "^2.6.12"
}
}