-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.45 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 3.45 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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "@pgp04/frontend",
"private": true,
"version": "2.6.1",
"type": "module",
"author": "@PGP04",
"license": "MIT",
"scripts": {
"lint": "eslint --fix 'src/**/*.{ts,vue}'",
"format": "prettier --write {src}/**/*.ts",
"docs": "typedoc",
"test": "jest",
"test:watch": "jest --watch",
"update": "yarn upgrade-interactive",
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"sversion": "standard-version",
"commit": "git-cz",
"cz": "git-cz",
"postinstall": "husky install .github/husky",
"prepack": "yarn build && pinst --disable",
"postpack": "pinst --enable",
"docker:build": "docker build -t hivetown/frontend .",
"docker:run": "docker run -p 8080:80 hivetown/frontend",
"docker:push": "docker push hivetown/frontend"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.4.0",
"@popperjs/core": "^2.11.6",
"@stripe/react-stripe-js": "^2.1.0",
"@stripe/stripe-js": "^1.52.0",
"@vueuse/core": "^10.1.2",
"axios": "^1.1.3",
"bootstrap": "^5.2.3",
"bootstrap-icons": "^1.10.3",
"bootstrap-icons-vue": "^1.8.1",
"bootstrap-vue": "^2.23.1",
"bootstrap-vue-3": "^0.5.1",
"chart.js": "^4.3.0",
"dotenv-cra": "^3.0.2",
"firebase": "^9.21.0",
"js-cookie": "^3.0.5",
"lodash": "^4.17.21",
"mapbox-gl": "^2.15.0",
"mdb-vue-ui-kit": "^4.0.0",
"primeflex": "^3.3.0",
"primeicons": "^6.0.1",
"primevue": "^3.29.0",
"sass": "^1.56.0",
"stripe": "^11.18.0",
"sweetalert2": "^11.7.12",
"vee-validate": "^4.9.5",
"vue": "^3.2.41",
"vue-chartjs": "^5.2.0",
"vue-router": "^4.2.1",
"vue-slick-carousel": "^1.0.6",
"vue3-simple-typeahead": "^1.0.11",
"vuex": "^4.1.0"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@sapphire/eslint-config": "^4.3.8",
"@sapphire/prettier-config": "^1.4.4",
"@sapphire/ts-config": "^3.3.4",
"@types/jest": "^29.5.1",
"@types/js-cookie": "^3.0.3",
"@types/lodash": "^4",
"@types/mapbox-gl": "^2",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"@vitejs/plugin-vue": "^3.2.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.6.0",
"husky": "^8.0.1",
"jest": "^29.2.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"standard-version": "^9.3.2",
"ts-jest": "^29.0.3",
"typedoc": "^0.23.17",
"typedoc-plugin-mdn-links": "^2.0.0",
"typescript": "^4.6.4",
"vite": "^3.2.0",
"vue-tsc": "^1.0.9"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fcul-lti/frontend.git"
},
"bugs": {
"url": "https://github.com/fcul-lti/frontend/issues"
},
"homepage": "https://hivetown.pt",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{mjs,js,ts}": "eslint --fix --ext mjs,js,ts"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public"
},
"resolutions": {
"ansi-regex": "^5.0.1",
"minimist": "^1.2.7"
},
"paths": {
"@*": [
"src/*"
]
},
"packageManager": "yarn@3.2.4"
}