-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.69 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
{
"name": "shadowray",
"version": "0.1.0",
"license": "MIT",
"author": "[email protected]",
"scripts": {
"build": "preact build --no-prerender",
"serve": "serve build",
"dev": "preact watch",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
"test": "jest ./tests"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"extends": [
"preact",
"plugin:@typescript-eslint/recommended"
],
"ignorePatterns": [
"build/"
]
},
"dependencies": {
"@derschmale/io-rgbe": "^0.1.1",
"@monaco-editor/loader": "^1.3.3",
"@monaco-editor/react": "^4.4.6",
"@petamoriken/float16": "^3.8.0",
"gl-matrix": "^3.4.3",
"preact": "^10.13.2",
"preact-render-to-string": "^5.2.6",
"preact-router": "^4.1.0",
"react-fps-stats": "github:codedhead/react-fps-stats",
"webgl-obj-loader": "^2.0.8",
"webpack-glsl-loader": "github:codedhead/webpack-glsl-loader",
"webrtx": "^0.1.1"
},
"devDependencies": {
"@types/enzyme": "^3.10.12",
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"@webgpu/types": "0.1.30",
"enzyme": "^3.11.0",
"enzyme-adapter-preact-pure": "^4.1.0",
"eslint": "^8.37.0",
"eslint-config-preact": "^1.3.0",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.5.0",
"jest-preset-preact": "^4.0.5",
"monaco-editor-core": "^0.36.1",
"preact-cli": "^3.4.5",
"serve": "^14.2.0",
"typescript": "^5.0.3"
},
"jest": {
"preset": "jest-preset-preact",
"setupFiles": [
"<rootDir>/tests/__mocks__/browserMocks.ts",
"<rootDir>/tests/__mocks__/setupTests.ts"
]
}
}