-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.99 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
{
"name": "meshup",
"version": "0.2.0",
"private": true,
"scripts": {
"dev": "next dev",
"debug": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"eslint": "npx eslint src test",
"eslint:fix": "npm run lint -- --fix",
"prettier": "npx prettier src test --check",
"prettier:fix": "npm run prettier -- --write",
"format": "npm run prettier:fix && npm run lint:fix"
},
"dependencies": {
"@mantine/core": "^7.1.7",
"@mantine/dropzone": "^7.1.7",
"@mantine/form": "^7.1.7",
"@mantine/hooks": "^7.1.7",
"@mantine/next": "^6.0.21",
"@mantine/notifications": "^7.1.7",
"@types/d3-force": "^3.0.3",
"@types/ramda": "^0.29.1",
"comlink": "^4.3.1",
"d3": "^7.8.5",
"d3-force": "^3.0.0",
"next": "^14.0.1",
"npm": "^10.2.3",
"peerjs": "^1.5.1",
"ramda": "^0.29.1",
"react": "18.2.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "18.2.0",
"tabler-icons-react": "^1.56.0",
"use-state-with-deps": "^1.1.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/d3": "^7.4.2",
"@types/node": "^20.8.10",
"@types/react": "^18.2.34",
"@types/react-dom": "18.2.14",
"@types/uuid": "^9.0.6",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.52.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-next": "14.0.1",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"postcss": "^8.4.31",
"postcss-preset-mantine": "^1.9.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "3.0.3",
"sass": "^1.69.5",
"tslint-config-prettier": "^1.18.0",
"typescript": "5.2.2"
}
}