-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.12 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
{
"name": "swtc",
"version": "0.6.1",
"description": "Secrets Within the Compound Game",
"main": "./index.html",
"type": "module",
"scripts": {
"start": "tsx ./src/server/main.ts",
"client": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"server": "tsx --watch ./src/server/main.ts",
"test": "npx playwright test",
"uitest": "npx playwright test --ui",
"vitest": "vitest",
"report": "npx playwright show-report",
"bundleSize": "npx vite-bundle-visualizer",
"createStrings": "tsx ./src/server/createStrings.ts"
},
"dependencies": {
"@dnd-kit/core": "^6.1.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.18",
"@mui/material": "^5.14.13",
"front-matter": "^4.0.2",
"glob": "^11.0.0",
"json5": "^2.2.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"socket.io": "^4.7.2",
"socket.io-client": "^4.7.2",
"sqlite3": "^5.1.6",
"zustand": "^4.5.2"
},
"devDependencies": {
"@playwright/test": "^1.41.2",
"@types/node": "^20.11.16",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"@vitejs/plugin-react": "^4.0.3",
"eslint": "^8.45.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"nodemon": "^3.0.2",
"tsx": "^4.12.0",
"typescript": "^5.4.5",
"vite": "^4.4.5",
"vite-bundle-visualizer": "^1.1.0",
"vitest": "^2.1.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/C-N-G/swtc.git"
},
"keywords": [
"game"
],
"author": {
"name": "Cormac Gudge",
"email": "cgudge@outlook.ie",
"url": "https://www.linkedin.com/in/cormac-gudge-swe/"
},
"contributors": [
{
"name": "Isaac Poulton"
}
],
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/C-N-G/swtc/issues"
},
"homepage": "https://github.com/C-N-G/swtc#readme"
}