-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.66 KB
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
{
"name": "Web Blog Developer",
"description": "Welcome to the Web Blog Developer Vue.js Test! In this test, you will be tasked with creating a simple app for an online cake shop using Vue.js",
"private": true,
"version": "0.0.0",
"type": "commonjs",
"license": "MIT",
"scripts": {
"dev": "vite",
"host": "vite --host",
"build": "vite build",
"preview": "vite preview",
"eslint": "eslint . --ext .js,.jsx,.ts,.tsx,.vue --fix",
"prepare": "husky install",
"pre-commit": "echo \"[Husky] pre-commit\""
},
"husky": {
"hooks": {
"pre-commit": "npx lint-staged"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"@mdi/js": "^7.2.96",
"@reduxjs/toolkit": "^1.9.5",
"add": "^2.0.6",
"axios": "^1.4.0",
"canvas-confetti": "^1.6.0",
"nanoid": "^4.0.2",
"nprogress": "^0.2.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.4.2",
"vue": "^3.3.4",
"vue-router": "^4.2.4",
"vue-toastification": "^2.0.0-rc.5"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@vitejs/plugin-vue": "^4.2.3",
"autoprefixer": "^10.4.14",
"cssnano": "^6.0.1",
"eslint": "^8.45.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-sonarjs": "^0.19.0",
"eslint-plugin-vue": "^9.15.1",
"husky": "^8.0.0",
"postcss": "^8.4.27",
"prettier": "^3.0.0",
"tailwindcss": "^3.3.3",
"vite": "^4.4.5",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-pwa": "^0.16.4"
}
}