forked from matrix-org/thirdroom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.57 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
78
79
80
81
82
83
84
85
{
"name": "thirdroom",
"version": "0.0.1",
"author": {
"name": "Third Room",
"url": "https://thirdroom.io"
},
"license": "Apache-2.0",
"type": "module",
"scripts": {
"dev": "vite",
"dev:testnet": "VITE_USE_TESTNET=true yarn dev",
"build": "tsc && vite build",
"preview": "vite-node ./preview-server.ts",
"preview:testnet": "VITE_USE_TESTNET=true yarn preview",
"typecheck": "tsc --noEmit",
"lint": "npm run lint:js && npm run lint:css",
"lint:js": "eslint ./src",
"lint:css": "stylelint 'src/**/*.css'",
"prepare": "husky install",
"test": "vitest",
"test:ui": "vitest --ui",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@dimforge/rapier3d-compat": "0.7.6",
"@radix-ui/react-scroll-area": "^0.1.4",
"@radix-ui/react-switch": "^0.1.5",
"@radix-ui/react-tooltip": "^0.1.7",
"@thirdroom/hydrogen-view-sdk": "0.0.5",
"bitecs": "^0.3.38",
"classnames": "^2.3.1",
"gl-matrix": "^3.4.3",
"immer": "^9.0.12",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "6",
"three": "0.140.0",
"zustand": "^4.0.0-rc.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react-hooks": "^8.0.0",
"@types/babel__core": "^7.1.19",
"@types/gl-matrix": "^3.2.0",
"@types/node": "^17.0.23",
"@types/offscreencanvas": "^2019.6.4",
"@types/postcss-preset-env": "^6.7.3",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@types/three": "0.139.0",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"@vitejs/plugin-react": "^1.0.7",
"@vitest/ui": "^0.9.2",
"c8": "^7.11.0",
"chokidar": "^3.5.3",
"concurrently": "^7.1.0",
"eslint": "^8.12.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-matrix-org": "^0.4.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"husky": "^7.0.0",
"jsdom": "^19.0.0",
"postcss": "^8.4.12",
"postcss-preset-env": "^7.4.3",
"prettier": "^2.6.1",
"stylelint": "^14.6.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^25.0.0",
"ts-node": "^10.7.0",
"typescript": "^4.4.4",
"vite": "^2.7.2",
"vite-node": "^0.9.2",
"vite-plugin-cross-origin-isolation": "^0.1.6",
"vite-plugin-rewrite-all": "^0.1.2",
"vitest": "^0.9.2",
"ws": "^8.5.0"
}
}