-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
118 lines (118 loc) · 4.36 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
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "draftmancer",
"version": "1.0.0",
"description": "Multiplayer MTG Limited Simulator",
"engines": {
"node": "22.x"
},
"main": "dist/src/server.js",
"type": "module",
"scripts": {
"start": "node --env-file=.env --experimental-json-modules .",
"start-dev": "nodemon --signal SIGINT --env-file=.env --experimental-json-modules --watch dist/src .",
"build": "concurrently \"tsc\" \"npx webpack --config client/webpack.config.prod.js --mode=production\"",
"build-server": "tsc",
"build-server-dev": "tsc --watch",
"build-client": "webpack --config client/webpack.config.prod.js --mode=production",
"build-client-dev": "npx webpack --config client/webpack.config.js --mode=development --watch --progress",
"dev-front": "concurrently --kill-others --raw \"npm run start\" \"npm run build-dev\"",
"dev": "concurrently --kill-others --raw \"npm run build-server-dev\" \"npm run start-dev\" \"npm run build-client-dev\"",
"test": "cross-env PORT=3001 mocha dist/test --exit --experimental-json-modules",
"test-bail": "cross-env PORT=3001 mocha dist/test --exit --experimental-json-modules -bail",
"manualtest": "cross-env PORT=3001 mocha dist/test/manual --exit --experimental-json-modules",
"manualtest-bail": "cross-env PORT=3001 mocha dist/test/manual --exit --experimental-json-modules -bail",
"fronttest": "cross-env PORT=3002 mocha dist/test/frontend --exit --experimental-json-modules",
"fronttest-bail": "cross-env PORT=3002 mocha dist/test/frontend --exit --experimental-json-modules -bail",
"fronttest-headless": "cross-env PORT=3002 HEADLESS=TRUE mocha dist/test/frontend --exit --experimental-json-modules",
"fronttest-headless-bail": "cross-env PORT=3002 HEADLESS=TRUE mocha dist/test/frontend --exit --experimental-json-modules -bail",
"prettier-format": "prettier --config .prettierrc --write src/**/*.ts test/**/*.ts test/**/*.js client/src/**/*[!min].js client/src/**/*[!min].ts client/src/**/*.vue",
"prepare": "husky",
"client-type-check": "cd client && vue-tsc --noEmit"
},
"repository": {
"type": "git",
"url": "https://github.com/Senryoku/Draftmancer.git"
},
"lint-staged": {
"*.{ts,js,vue,css}": "prettier --config .prettierrc --write"
},
"author": "Senryoku",
"license": "MIT",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/free-regular-svg-icons": "^6.4.2",
"@fortawesome/free-solid-svg-icons": "^6.4.2",
"@fortawesome/vue-fontawesome": "^3.0.5",
"axios": "^1.7.7",
"chart.js": "^4.4.3",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"express": "^4.19.2",
"express-static-gzip": "^2.2.0",
"floating-vue": "^5.2.2",
"glob": "^11.0.0",
"graphql-ws": "^5.16.0",
"JSONStream": "^1.3.5",
"mixpanel": "^0.18.0",
"pico-emitter": "^1.2.1",
"random-js": "^2.1.0",
"smol-string": "^1.0.3",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5",
"sortablejs": "^1.15.3",
"sortablejs-vue3": "^1.2.11",
"sweetalert2": "^11.10.1",
"threads": "^1.7.0",
"uuid": "^11.0.3",
"vue": "^3.5.10",
"vue-chartjs": "^5.2.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@types/chai": "^5.0.0",
"@types/compression": "^1.7.5",
"@types/cookie-parser": "^1.4.7",
"@types/mocha": "^10.0.8",
"@types/node": "^22.7.4",
"@types/sortablejs": "^1.15.8",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"babel-loader": "^9.1.3",
"chai": "^5.1.0",
"compression-webpack-plugin": "^11.1.0",
"concurrently": "^9.0.1",
"copy-webpack-plugin": "^12.0.2",
"core-js": "^3.37.1",
"cross-env": "^7.0.3",
"css-loader": "^7.1.1",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.26.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.0",
"mocha": "^10.6.0",
"prettier": "^3.3.3",
"puppeteer": "^23.8.0",
"source-map-support": "^0.5.21",
"ts-loader": "^9.5.1",
"typescript": "^5.3.2",
"vue-loader": "^17.3.1",
"vue-style-loader": "^4.1.3",
"vue-tsc": "^2.1.4",
"webpack": "^5.91.0",
"webpack-bundle-analyzer": "^4.10.1",
"webpack-cli": "^5.1.4",
"webpack-merge": "^6.0.1",
"worker-loader": "^3.0.8"
},
"optionalDependencies": {
"bufferutil": "^4.0.8",
"utf-8-validate": "^6.0.3"
}
}