-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.25 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
{
"name": "plugin-tasks",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"build-without-test": "vite build",
"build-dev": "vite build --mode development",
"preview": "vite preview",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --fix src",
"prettier": "prettier . --write",
"build-plugin": "vite build && rm -rf ~/Desktop/ct/churchtools/sites/default/custommodules/tasks && cp -r dist/ ~/Desktop/ct/churchtools/sites/default/custommodules/tasks"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.2.1",
"pinia": "^2.0.24",
"vue": "^3.2.41",
"vue-i18n": "^9.2.2",
"vue-router": "^4.1.6",
"vuedraggable": "^4.1.0"
},
"devDependencies": {
"@apollo/client": "^3.7.16",
"@churchtools/churchtools-client": "^1.2.14",
"@churchtools/utils": "^1.0.0",
"@tailwindcss/typography": "^0.5.9",
"@types/node": "^20.1.2",
"@vitejs/plugin-basic-ssl": "^1.0.1",
"@vitejs/plugin-vue": "^4.1.0",
"@vue/apollo-composable": "^4.0.0-beta.8",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vuelidate/core": "^2.0.0",
"@vuelidate/validators": "^2.0.0",
"autoprefixer": "^10.4.13",
"churchtools-styleguide": "git+ssh://[email protected]:2222/churchtools/churchtools-styleguide.git#v0.60.0",
"eslint": "^8.27.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-vue": "^9.7.0",
"fuse.js": "^6.6.2",
"graphql": "^16.7.1",
"graphql-tag": "^2.12.6",
"lodash": "^4.17.21",
"postcss": "^8.4.19",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.4",
"tailwindcss": "^3.2.4",
"typescript": "^5.0.4",
"url": "^0.11.0",
"vite": "^4.2.1",
"vite-plugin-eslint": "^1.8.1",
"vue-tsc": "^1.0.9"
},
"browserslist": [
"> 0.5%",
"last 2 versions",
"not ie <= 11",
"ios_saf >= 12.2",
"not dead",
"not op_mini all"
]
}