-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.14 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.14 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
{
"name": "interactive-whiteboard",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "vite",
"dev-expose": "vite --host",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --build",
"lint": "eslint . --fix",
"lint-check": "eslint .",
"format": "prettier --write src/",
"format-check": "prettier --check src/",
"precommit": "npm run lint && npm run format && git add ."
},
"pre-commit": "precommit",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-regular-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/vue-fontawesome": "^3.0.8",
"@tensorflow/tfjs": "^4.22.0",
"dexie": "^4.0.11",
"js-logger": "^1.6.1",
"lodash-es": "^4.17.21",
"pinia": "^3.0.1",
"popular-english-words": "^1.0.2",
"socket.io-client": "^4.6.2",
"vue": "^3.5.13",
"vue-color-kit": "^1.0.6",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.11.0",
"@tsconfig/node22": "^22.0.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.13.10",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.5.0",
"@vue/tsconfig": "^0.7.0",
"bulma": "^1.0.3",
"eslint": "^9.22.0",
"eslint-plugin-vue": "^10.0.0",
"jiti": "^2.4.2",
"npm-run-all": "^4.1.5",
"pre-commit": "^1.2.2",
"prettier": "^3.5.3",
"sass": "^1.85.1",
"sass-loader": "^16.0.5",
"typescript": "^5.8.2",
"vite": "^6.2.2",
"vue-tsc": "^2.2.8"
},
"overrides": {
"cross-spawn": "^7.0.6"
},
"description": "Frontend for our whiteboard.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/MusicFreak456/interactive-whiteboard-app.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/MusicFreak456/interactive-whiteboard-app/issues"
},
"homepage": "https://github.com/MusicFreak456/interactive-whiteboard-app#readme"
}