-
Notifications
You must be signed in to change notification settings - Fork 350
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.78 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.78 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
{
"name": "ruxailab",
"version": "0.1.0",
"private": true,
"license": "MIT",
"scripts": {
"serve": "vue-cli-service serve",
"lint": "eslint src --ext .js,.vue",
"lint:fix": "eslint src --ext .js,.vue --fix",
"i18n:report": "vue-cli-service i18n:report --src './src/**/*.?(js|vue)' --locales './src/locales/**/*.json'",
"doc": "jsdoc -c conf.json",
"test": "vue-cli-service test:unit",
"build-dev": "vue-cli-service build --mode development",
"build-prod": "vue-cli-service build --mode production",
"cypress:open": "cypress open",
"deploy-dev": "firebase use dev && firebase deploy --only hosting:ruxailab-dev",
"deploy-develop": "firebase use develop && firebase deploy --only hosting:ruxailab-develop",
"deploy-prod": "firebase use prod && firebase deploy --only hosting:ruxailab-prod",
"test-playwright": "playwright test",
"test-playwright-ui": "playwright test --ui",
"test-html-report": "playwright test --reporter=html",
"test-json-report": "PLAYWRIGHT_JSON_OUTPUT_NAME=results.json playwright test --browser=chromium --reporter=json"
},
"dependencies": {
"@mediapipe/face_mesh": "^0.4.1633559619",
"@tensorflow-models/face-landmarks-detection": "^1.0.6",
"@tensorflow/tfjs": "^4.22.0",
"@tensorflow/tfjs-backend-webgl": "^4.22.0",
"@tensorflow/tfjs-converter": "^4.22.0",
"@tensorflow/tfjs-core": "^4.22.0",
"@tiptap/core": "^2.27.2",
"@tiptap/extension-image": "^2.27.2",
"@tiptap/extension-link": "^2.27.2",
"@tiptap/extension-underline": "^2.27.2",
"@tiptap/pm": "^2.27.2",
"@tiptap/starter-kit": "^2.27.2",
"@tiptap/vue-3": "^2.27.2",
"@vue/babel-plugin-jsx": "^2.0.1",
"@vueup/vue-quill": "^1.2.0",
"axios": "^1.13.5",
"buffer": "^6.0.3",
"chart.js": "^4.5.1",
"chartjs-adapter-date-fns": "^3.0.0",
"crypto-browserify": "^3.12.1",
"date-fns": "^4.1.0",
"dompurify": "^3.3.2",
"firebase": "^9.23.0",
"firebase-admin": "^13.6.1",
"firebase-functions": "^6.6.0",
"jsdoc-vuex-plugin": "^1.0.0",
"jspdf": "^3.0.3",
"jspdf-autotable": "^5.0.7",
"lodash": "^4.17.23",
"nanoid": "^5.1.6",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"uid-generator": "^2.0.0",
"vue": "^3.5.29",
"vue-chartjs": "^5.3.3",
"vue-i18n": "^11.2.7",
"vue-loader": "^17.4.2",
"vue-router": "^4.6.4",
"vue-toastification": "^2.0.0-rc.5",
"vue3-quill": "^0.3.1",
"vue3-text-clamp": "^0.1.2",
"vuedraggable": "^4.1.0",
"vuetify": "^3.12.1",
"vuex": "^4.0.2",
"wavesurfer.js": "^7.12.1"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/eslint-parser": "^7.28.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@intlify/eslint-plugin-vue-i18n": "^4.2.0",
"@playwright/test": "^1.58.2",
"@testing-library/cypress": "^10.0.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/vue": "^8.1.0",
"@types/node": "^25.3.2",
"@vue/cli-plugin-babel": "^5.0.8",
"@vue/cli-plugin-router": "^5.0.8",
"@vue/cli-plugin-unit-jest": "^5.0.8",
"@vue/cli-plugin-vuex": "^5.0.8",
"@vue/cli-service": "^5.0.8",
"@vue/compiler-sfc": "^3.5.27",
"@vue/test-utils": "^2.4.6",
"@vue/vue3-jest": "^27.0.0",
"babel-plugin-transform-require-context": "^0.1.1",
"cypress": "^15.11.0",
"eslint": "^9.39.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-vue": "^10.8.0",
"eslint-plugin-vuetify": "^2.5.2",
"globals": "^17.3.0",
"husky": "^9.1.7",
"jsdoc": "^4.0.5",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"sass": "~1.32.6",
"sass-loader": "~8.0.0",
"vue-eslint-parser": "^10.4.0"
},
"lint-staged": {
"src/**/*.{js,vue}": [
"eslint --fix",
"prettier --write"
]
}
}