-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.12 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": "blog_view",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite --mode development",
"build": "vue-tsc --noEmit && vite build",
"build:dev": "vite build --mode development",
"build:pro": "vite build --mode production",
"preview": "vite preview",
"lint": "eslint src --fix --ext .ts,.tsx,.vue,.js,.jsx",
"prettier": "prettier --write ."
},
"dependencies": {
"axios": "^0.26.1",
"nprogress": "^0.2.0",
"pinia": "^2.0.0-rc.10",
"vite-plugin-html": "^3.2.0",
"vue": "^3.2.25",
"vue-router": "^4.0.16"
},
"devDependencies": {
"@types/node": "^17.0.23",
"@types/nprogress": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"@vitejs/plugin-vue": "^2.2.0",
"dart-sass": "^1.25.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^8.6.0",
"prettier": "^2.6.2",
"sass": "^1.50.0",
"typescript": "^4.5.4",
"vite": "^2.8.0",
"vite-plugin-compression": "^0.5.1",
"vue-tsc": "^0.29.8"
}
}