-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
72 lines (72 loc) · 2.19 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
{
"name": "proofofcombat",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && next export",
"start": "next start",
"lint": "next lint",
"generate": "graphql-codegen --config codegen.yml -r dotenv/config",
"ts": "tsc --noEmit --incremental",
"test": "jest",
"e2e": "playwright test --reporter=list"
},
"dependencies": {
"@apollo/client": "^3.5.9",
"@babel/runtime": "^7.26.9",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@mui/base": "~5.0.0-beta.40",
"@mui/core": "^5.0.0-alpha.54",
"@mui/icons-material": "~5.16.6",
"@mui/lab": "~5.0.0-alpha.173",
"@mui/material": "~5.16.6",
"@types/capitalize": "^2.0.0",
"@types/escape-html": "^1.0.1",
"@types/node-emoji": "^1.8.1",
"@types/tinycolor2": "^1.4.3",
"capitalize": "^2.0.4",
"escape-html": "^1.0.3",
"graphql": "^16.3.0",
"mobx": "^6.4.0",
"mobx-react-lite": "^3.3.0",
"next": "~12.1.0",
"node-emoji": "^1.11.0",
"notistack": "~3.0.1",
"prettier": "^2.5.1",
"react": "~18.2.0",
"react-dom": "~18.2.0",
"short-time-ago": "^2.0.0",
"socket.io-client": "^4.4.1",
"tinycolor2": "^1.4.2",
"worker-timers": "^7.0.45"
},
"devDependencies": {
"@babel/core": "^7.26.9",
"@babel/plugin-transform-runtime": "^7.26.9",
"@babel/preset-env": "^7.26.9",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@graphql-codegen/cli": "2.6.2",
"@graphql-codegen/introspection": "2.1.1",
"@graphql-codegen/typescript": "2.4.5",
"@graphql-codegen/typescript-operations": "2.3.2",
"@graphql-codegen/typescript-react-apollo": "3.2.8",
"@playwright/test": "^1.50.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "14",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^29.5.14",
"@types/node": "17.0.18",
"@types/react": "~18.2.59",
"babel-jest": "^29.7.0",
"eslint": "8.9.0",
"eslint-config-next": "12.0.10",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.2.6",
"tslint": "^6.1.3",
"typescript": "4.5.5"
}
}