-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
66 lines (66 loc) · 2.33 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
{
"name": "hackupc-live",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview --port 5050",
"test:e2e": "start-server-and-test preview http://127.0.0.1:5050/ 'cypress open'",
"test:e2e:ci": "start-server-and-test preview http://127.0.0.1:5050/ 'cypress run'",
"test:unit": "cypress open-ct",
"test:unit:ci": "cypress run-ct --quiet --reporter spec",
"typecheck": "vue-tsc --noEmit",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore && stylelint \"**/*.{vue,css,scss,sass}\" --fix",
"prepare": "husky install"
},
"dependencies": {
"@fontsource/montserrat": "^4.5.5",
"@fortawesome/fontawesome-svg-core": "6.5.2",
"@fortawesome/free-brands-svg-icons": "6.5.2",
"ant-design-vue": "^4.0.0-rc.6",
"dayjs": "^1.10.8",
"pinia": "^2.0.11",
"vue": "^3.2.31",
"vue-router": "^4.0.14"
},
"devDependencies": {
"@cypress/vite-dev-server": "^2.2.2",
"@cypress/vue": "^3.1.1",
"@fortawesome/free-regular-svg-icons": "6.5.2",
"@fortawesome/free-solid-svg-icons": "6.5.2",
"@fortawesome/vue-fontawesome": "3.0.6",
"@heroicons/vue": "^1.0.6",
"@rushstack/eslint-patch": "^1.1.1",
"@types/node": "^16.11.26",
"@vitejs/plugin-vue": "^2.2.4",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^10.0.0",
"@vue/tsconfig": "^0.1.3",
"@vueuse/core": "^8.0.1",
"cypress": "^9.5.1",
"eslint": "^8.11.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-vue": "^8.5.0",
"husky": "^7.0.4",
"prettier": "^2.5.1",
"sass": "^1.49.9",
"start-server-and-test": "^1.14.0",
"stylelint": "^14.6.1",
"stylelint-config-idiomatic-order": "^8.1.0",
"stylelint-config-prettier-scss": "^0.0.1",
"stylelint-config-sass-guidelines": "^9.0.1",
"stylelint-config-standard-scss": "^3.0.0",
"stylelint-config-standard-vue": "^1.0.0",
"stylelint-order": "^5.0.0",
"typescript": "~4.6.2",
"vite": "^2.8.6",
"vite-plugin-fonts": "^0.3.0",
"vite-plugin-generate-file": "^0.0.3",
"vite-plugin-pwa": "^0.11.13",
"vite-plugin-radar": "^0.4.2",
"vue-tsc": "^0.33.9",
"vue3-markdown-it": "^1.0.10"
},
"$schema": "https://json.schemastore.org/package"
}