-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.49 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.49 KB
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
{
"name": "etherion-lab",
"version": "1.9.24",
"license": "MIT",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "npx serve@latest out",
"analyze": "cross-env ANALYZE=true next build",
"lint": "next lint --fix && npx --no-install lint-staged",
"prepare": "husky install"
},
"dependencies": {
"@dao-xyz/borsh": "^5.1.7",
"@ducanh2912/next-pwa": "^10.2.5",
"@libp2p/mplex": "^9.0.5",
"@libp2p/websockets": "^7.0.6",
"@peerbit/document": "^3.1.4",
"@peerbit/program": "^2.3.2",
"@peerbit/react": "^0.0.5",
"@pixi/filter-advanced-bloom": "^5.1.1",
"@pixi/filter-pixelate": "^5.1.1",
"@pixi/react": "^7.1.0",
"@pixi/react-animated": "^7.1.0",
"@pixi/ui": "^0.10.0",
"@sqlite.org/sqlite-wasm": "^3.44.0-build1",
"animejs": "^3.2.2",
"bufferutil": "^4.0.7",
"its-fine": "^1.2.5",
"just-map-values": "^3.2.0",
"just-reduce-object": "^2.3.0",
"nano-memoize": "^3.0.14",
"next": "^14.2.5",
"peerbit": "^2.0.9",
"pixi-react-parallax": "^1.0.15",
"pixi-text-input": "^1.0.6",
"pixi.js": "^7.3.1",
"planck": "piqnt/planck.js",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-event-hook": "^3.1.2",
"react-hotkeys-hook": "^4.4.1",
"react-interval-hook": "^1.1.4",
"react-responsive": "^9.0.2",
"react-router-dom": "^6.26.1",
"react-spring": "^9.7.2",
"rfdc": "^1.4.1",
"sharp": "^0.32.4",
"use-debounce": "^10.0.0",
"use-font-face-observer": "^1.2.2",
"utf-8-validate": "^6.0.3",
"uuid": "^9.0.1"
},
"devDependencies": {
"@next/bundle-analyzer": "^14.0.1",
"@types/animejs": "^3.1.12",
"@types/node": "^20.4.7",
"@types/react": "^18.2.36",
"@types/react-dom": "^18.2.14",
"@types/throttle-debounce": "^5.0.0",
"@types/uuid": "^9.0.3",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"@welldone-software/why-did-you-render": "^7.0.1",
"cross-env": "^7.0.3",
"eslint": "^8.46.0",
"eslint-config-next": "^14.0.1",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"lint-staged": "^15.0.0",
"prettier": "^3.0.0",
"typescript": "^5.1.6",
"webpack": "^5.88.2"
},
"lint-staged": {
"*.+(js|jsx|ts|tsx)": [
"eslint --fix"
],
"*.+(js|jsx|ts|tsx|json|css|md|mdx)": [
"prettier --write"
]
},
"sideEffects": false
}