-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 1.92 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "Portfolio-Site",
"version": "3.1.0",
"description": "Portfolio Website for Skyler Fly-Wilson",
"author": "Skyler Fly-Wilson",
"type": "module",
"scripts": {
"dev": "vite",
"watch": "vite build --watch",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint .",
"test:unit": "vitest",
"coverage": "vitest --coverage"
},
"dependencies": {
"@vitejs/plugin-vue": "^5.2.1",
"aos": "^2.3.4",
"autoprefixer": "^10.4.20",
"axios": "^1.7.9",
"lodash": "^4.17.21",
"marked": "^15.0.3",
"moment": "^2.30.1",
"pug": "^3.0.3",
"vite": "^6.0.3",
"vitest": "^2.1.8",
"vue": "^3.5.13",
"vue-axios": "^3.5.2",
"vue-cli-plugin-pug": "^2.0.0",
"vue-router": "^4.5.0",
"vuetify": "^3.7.5",
"webpack-plugin-vuetify": "^3.0.3"
},
"devDependencies": {
"@vue/test-utils": "^2.4.6",
"babel-plugin-istanbul": "^7.0.0",
"chai": "^5.1.2",
"eslint": "^9.17.0",
"eslint-plugin-vue": "^9.32.0",
"sass-embedded": "^1.83.0",
"sinon": "^19.0.2",
"stylus": "^0.64.0"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"@vue/prettier",
"eslint:recommended"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"license": "GPL-3.0",
"nyc": {
"instrument": false,
"sourceMap": false,
"check-coverage": false,
"per-file": true,
"lines": 90,
"statements": 90,
"functions": 90,
"branches": 90,
"include": [
"src/**/*.{js,vue}",
"src/*.vue"
],
"reporter": [
"lcov",
"text",
"text-summary"
],
"cache": true,
"all": true
},
"repository": "github:skyfly200/Portfolio-Site"
}