-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1018 Bytes
/
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": "app-title",
"version": "0.1.0",
"private": true,
"scripts": {
"init": "npm clean-install && cd api && npm clean-install",
"dev": "vite",
"build": "vite build",
"func": "cd api && func start",
"swa": "swa start http://localhost:3000 --api-location http://localhost:7071",
"all": "npm-run-all --parallel dev func swa",
"serve": "vite preview",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --fix src"
},
"dependencies": {
"axios": "^0.24.0",
"vue": "^3.2.26",
"vue-router": "^4.0.12",
"vuex": "^4.0.2"
},
"devDependencies": {
"@azure/static-web-apps-cli": "^0.8.2",
"@vitejs/plugin-vue": "^2.0.1",
"eslint-plugin-vue": "^8.2.0",
"npm-run-all": "^4.1.5",
"vite": "^2.7.3"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {}
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}