-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.8 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
{
"name": "graphing-calculator",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"dev:wasm": "cargo watch -C rust/joshs_graphing_calculator_lib -s 'wasm-pack build'",
"build:wasm": "wasm-pack build rust/joshs_graphing_calculator_lib && rm ./rust/joshs_graphing_calculator_lib/pkg/.gitignore"
},
"author": "Josh Pullen",
"license": "ISC",
"dependencies": {
"@cortex-js/compute-engine": "^0.12.2",
"@headlessui/react": "^1.7.12",
"@react-three/drei": "^9.50.4",
"@react-three/fiber": "^8.10.0",
"@react-three/postprocessing": "^2.7.0",
"@use-gpu/react": "^0.8.0",
"@use-gpu/webgpu": "^0.8.0",
"@use-gpu/wgsl-loader": "^0.8.0",
"@use-gpu/workbench": "^0.8.0",
"comlink": "^4.3.1",
"deep-equal": "^2.2.0",
"katex": "^0.16.4",
"mathlive": "^0.91.1",
"next": "^13.4.3",
"next-themes": "^0.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"schema-utils": "^4.0.1",
"slate": "^0.94.1",
"slate-react": "^0.94.2",
"three": "^0.148.0",
"tunnel-rat": "^0.1.0",
"usehooks-ts": "^2.9.1"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.8",
"@types/deep-equal": "^1.0.1",
"@types/katex": "^0.16.0",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@types/three": "^0.148.0",
"@wasm-tool/wasm-pack-plugin": "^1.6.0",
"autoprefixer": "^10.4.13",
"classnames": "^2.3.2",
"eslint": "^8.31.0",
"eslint-config-next": "^13.1.1",
"next-transpile-modules": "^10.0.0",
"postcss": "^8.4.20",
"raw-loader": "^4.0.2",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.4",
"webpack-stats-plugin": "^1.1.1"
}
}