-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.62 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
{
"name": "p2p-debugger",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lintfix": "next lint --fix",
"openapi-ts": "openapi-ts",
"test": "jest",
"clean": "rm -rf out/ node_modules/ .next/",
"docker-build": "npm run clean && docker build . -t maxdavin/p2p-debugger:latest"
},
"dependencies": {
"@hey-api/client-fetch": "^0.1.3",
"@mantine/core": "^7.10.2",
"@mantine/hooks": "^7.10.2",
"@mantine/notifications": "^7.10.2",
"@tabler/icons-react": "^3.6.0",
"cytoscape-avsdf": "^1.0.0",
"enhanced-ms": "^3.0.0",
"eslint-plugin-jest": "^28.6.0",
"next": "14.2.4",
"react": "^18",
"react-cytoscapejs": "^2.0.0",
"react-dom": "^18",
"swr": "^2.2.5",
"yaml": "^2.4.5"
},
"devDependencies": {
"@eslint/js": "^9.5.0",
"@hey-api/openapi-ts": "^0.46.3",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-cytoscapejs": "^1.2.5",
"@types/react-dom": "^18",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.4",
"eslint-plugin-simple-import-sort": "^12.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.38",
"postcss-preset-mantine": "^1.15.0",
"postcss-simple-vars": "^7.0.1",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.2",
"typescript-eslint": "^7.13.1"
}
}