-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·43 lines (43 loc) · 1.22 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
{
"name": "todolist",
"description": "A indexedDB demo with vue",
"version": "1.0.0",
"author": "mhy-web <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"start": "npm run dev",
"dev": "npm run serve",
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"deploy": "npm run build && ./deploy.sh",
"upload": "./deploy.sh",
"lint": "eslint --ext .js,.vue src"
},
"dependencies": {
"core-js": "^3.6.4",
"element-ui": "^2.13.0",
"vue": "^2.6.11",
"vue-router": "^3.1.5"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.2.0",
"@vue/cli-plugin-eslint": "^4.2.0",
"@vue/cli-plugin-router": "^4.2.0",
"@vue/cli-service": "^4.2.0",
"@vue/eslint-config-standard": "^5.1.0",
"autoprefixer": "^9.7.4",
"babel-eslint": "^10.0.3",
"babel-plugin-component": "^1.1.1",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^6.1.2",
"less": "^3.11.1",
"less-loader": "^5.0.0",
"script-ext-html-webpack-plugin": "^2.1.4",
"vue-template-compiler": "^2.6.11"
}
}