forked from vueschool/vuejs-forge-the-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.77 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
{
"name": "vue-forge-boilerplate",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "run-p type-check build-only",
"preview": "vite preview --port 4173",
"test:unit": "vitest --environment jsdom",
"test:component": "cypress open --component --browser=canary",
"test:component:ci": "cypress run --component --browser=canary",
"test:e2e": "start-server-and-test preview http://127.0.0.1:4173/ 'cypress open --e2e'",
"test:e2e:ci": "start-server-and-test preview http://127.0.0.1:4173/ 'cypress run --e2e'",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
},
"dependencies": {
"@apollo/client": "^3.6.9",
"@twicpics/components": "^0.8.2",
"@vue/apollo-composable": "^4.0.0-alpha.18",
"@vueuse/core": "^8.9.2",
"graphql": "^16.5.0",
"graphql-tag": "^2.12.6",
"lodash-es": "^4.17.21",
"pinia": "^2.0.16",
"unplugin-vue-components": "^0.20.1",
"uuid": "^8.3.2",
"vite-plugin-pages": "^0.24.3",
"vue": "^3.2.37",
"vue-router": "^4.0.16",
"vuedraggable": "^4.1.0"
},
"devDependencies": {
"@progress/kendo-licensing": "^1.2.2",
"@progress/kendo-theme-default": "^5.5.0",
"@progress/kendo-vue-animation": "^3.4.0",
"@progress/kendo-vue-buttons": "^3.4.0",
"@progress/kendo-vue-dialogs": "^3.4.0",
"@progress/kendo-vue-editor": "^3.4.0",
"@progress/kendo-vue-form": "^3.4.0",
"@progress/kendo-vue-indicators": "^3.4.0",
"@progress/kendo-vue-inputs": "^3.4.0",
"@progress/kendo-vue-intl": "^3.4.3",
"@progress/kendo-vue-layout": "^3.4.0",
"@progress/kendo-vue-notification": "^3.4.0",
"@progress/kendo-vue-popup": "^3.4.0",
"@progress/kendo-vue-progressbars": "^3.4.3",
"@rollup/plugin-graphql": "^1.1.0",
"@rushstack/eslint-patch": "^1.1.0",
"@types/jsdom": "^16.2.14",
"@types/lodash-es": "^4.17.6",
"@types/node": "^16.11.41",
"@types/uuid": "^8.3.4",
"@vitejs/plugin-vue": "^2.3.3",
"@vitejs/plugin-vue-jsx": "^1.3.10",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.0",
"@vue/test-utils": "^2.0.0",
"@vue/tsconfig": "^0.1.3",
"autoprefixer": "^10.4.7",
"cypress": "^10.1.0",
"eslint": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-vue": "^9.0.0",
"jsdom": "^20.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.14",
"prettier": "^2.5.1",
"start-server-and-test": "^1.14.0",
"tailwindcss": "^3.1.4",
"typescript": "~4.7.4",
"vite": "^2.9.12",
"vite-plugin-windicss": "^1.8.6",
"vitest": "^0.15.1",
"vue-tsc": "^0.38.1",
"windicss": "^3.5.6"
}
}