-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.37 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
43
44
45
46
47
48
49
50
51
{
"name": "vue3-playground",
"version": "1.0.0",
"description": "A vue3.0 playground",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server --config build/webpack.config.js",
"build": "webpack --config build/webpack.config.js",
"lint": "eslint --ext .js,.vue,.ts src",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"vue@next",
"vue3",
"webpack",
"vuex",
"vue-router"
],
"author": "Knissing <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@typescript-eslint/eslint-plugin": "2",
"@typescript-eslint/parser": "^3.7.0",
"@vue/compiler-sfc": "^3.0.0-rc.4",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.0.3",
"css-loader": "^3.6.0",
"eslint": "^7.5.0",
"eslint-plugin-vue": "^7.0.0-beta.0",
"html-webpack-plugin": "^4.3.0",
"less": "^3.12.2",
"less-loader": "^7.1.0",
"ts-loader": "^8.0.1",
"typescript": "^3.9.7",
"vue-loader": "^16.0.0-beta.4",
"vue-style-loader": "^4.1.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"core-js": "3",
"lodash": "^4.17.19",
"vue": "^3.0.2",
"vue-router": "^4.0.0-rc.3",
"vuex": "^4.0.0-rc.1"
}
}