-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
106 lines (106 loc) · 3.49 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
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
{
"name": "joybox",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"lint": "vue-cli-service lint",
"build-backend": "tsc -p backend/tsconfig.json --sourceMap false",
"build-frontend": "NODE_OPTIONS=--openssl-legacy-provider vue-cli-service build --dest client",
"start": "cross-env PLATFORM=DOCKER TS_NODE_PROJECT=backend/tsconfig.json node -r tsconfig-paths/register backend/Src/main.js",
"test": "cross-env TS_NODE_PROJECT=backend/tsconfig.json mocha -r ts-node/register -r tsconfig-paths/register test/**/*.ts"
},
"dependencies": {
"@mdi/font": "^4.4.95",
"axios": "^0.19.0",
"better-sqlite3": "^7.4.0",
"binary-search-bounds": "^2.0.4",
"chart.js": "^2.9.3",
"chartjs-plugin-datalabels": "^0.7.0",
"connect-history-api-fallback": "^1.6.0",
"dateformat": "^3.0.3",
"dayjs": "^1.8.15",
"express": "^4.17.1",
"fast-levenshtein": "^3.0.0",
"ffmpeg-progress-wrapper": "^1.1.7",
"format-duration": "^1.3.1",
"get-folder-size": "^2.0.1",
"hls.js": "^0.14.12",
"JSONStream": "^1.3.5",
"jsonwebtoken": "^8.5.1",
"lru-cache": "^6.0.0",
"material-design-icons-iconfont": "^6.1.0",
"memoizee": "^0.4.14",
"multer": "^1.4.2",
"node-interval-tree": "^1.3.3",
"pretty-bytes": "^5.3.0",
"pretty-ms": "^5.0.0",
"reflect-metadata": "^0.1.13",
"roboto-fontface": "^0.10.0",
"rxjs": "^6.5.4",
"selenium-webdriver": "^4.11.1",
"socket.io": "^2.2.0",
"ts-bus": "^2.3.1",
"vue": "^2.7.14",
"vue-chartjs": "^3.5.1",
"vue-class-component": "^7.1.0",
"vue-meta": "^2.2.2",
"vue-property-decorator": "^8.2.1",
"vue-router": "^3.1.2",
"vue-rx": "^6.2.0",
"vue-socket.io": "^3.0.7",
"vue-virtual-scroller": "^1.0.10",
"vuedraggable": "^2.23.0",
"vuetify": "^2.0.7",
"vuex": "^3.1.1",
"vuex-module-decorators": "^0.11.0",
"vuex-persistedstate": "^2.7.0",
"web-push": "^3.4.0"
},
"devDependencies": {
"@types/better-sqlite3": "^5.4.1",
"@types/chai": "^4.2.0",
"@types/connect-history-api-fallback": "^1.3.3",
"@types/dateformat": "^3.0.0",
"@types/express": "^4.17.0",
"@types/fast-levenshtein": "0.0.1",
"@types/format-duration": "^1.0.1",
"@types/get-folder-size": "^2.0.0",
"@types/hls.js": "^0.13.1",
"@types/jsonstream": "^0.8.30",
"@types/jsonwebtoken": "^8.3.7",
"@types/lru-cache": "^5.1.1",
"@types/memoizee": "^0.4.3",
"@types/mocha": "^5.2.7",
"@types/multer": "^1.4.5",
"@types/node": "^20.5.0",
"@types/selenium-webdriver": "^4.1.15",
"@types/socket.io": "^2.1.2",
"@types/socket.io-client": "^1.4.32",
"@types/web-push": "^3.3.0",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"@vue/cli-plugin-eslint": "^4.5.13",
"@vue/cli-plugin-typescript": "^3.10.0",
"@vue/cli-service": "^3.10.0",
"@vue/eslint-config-standard": "^5.1.2",
"@vue/eslint-config-typescript": "^7.0.0",
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^6.2.2",
"mocha": "^6.2.0",
"ts-node": "^8.3.0",
"tsconfig-paths": "^3.9.0",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"typescript": "^4.8.4",
"vue-template-compiler": "^2.7.14"
},
"gitHooks": {
"pre-commit": "npm test"
}
}