-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.58 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.58 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
{
"name": "multiblindtest",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently --kill-others \"npm run front/serve\" \"npm run server/watch\"",
"build": "npm run front/build && npm run server/build",
"front/serve": "vite",
"front/build": "vite build",
"server/watch": "tsc -w -p ./tsconfig_server.json",
"server/build": "tsc -p ./tsconfig_server.json",
"server/start": "pm2 start bootstrap-pm2.json"
},
"dependencies": {
"@types/node-fetch": "^2.6.13",
"body-parser": "^1.20.4",
"connect-history-api-fallback": "^1.6.0",
"express": "^4.22.1",
"express-serve-static-core": "^0.1.1",
"glob": "^7.2.3",
"jsonwebtoken": "^9.0.3",
"node-fetch": "^2.7.0",
"sockjs": "^0.3.24",
"uuid": "^11.1.0",
"vue": "^2.7.16",
"vue-class-component": "^7.2.6",
"vue-property-decorator": "^9.1.2",
"vue-router": "^3.6.5",
"vuex": "^3.6.2"
},
"devDependencies": {
"@types/body-parser": "^1.19.6",
"@types/connect-history-api-fallback": "^1.5.4",
"@types/express": "^4.17.25",
"@types/glob": "^8.1.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^22.19.15",
"@types/sockjs": "^0.3.36",
"@types/tmi.js": "^1.8.6",
"buffer": "^6.0.3",
"concurrently": "^6.5.1",
"fuse.js": "^6.6.2",
"gsap": "^3.14.2",
"less": "^4.6.4",
"process": "^0.11.10",
"sockjs-client": "^1.6.1",
"tmi.js": "^1.8.5",
"typescript": "^5.9.3",
"vite": "^4.5.14",
"vite-plugin-vue2": "^2.0.3",
"vue-i18n": "^8.28.2",
"vue-template-compiler": "^2.7.16"
}
}