-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"private": true,
"name": "jacobbruner.com",
"version": "0.0.1",
"scripts": {
"setup": "npm install && npm run build:wasm",
"opt:wasm": "cd game-of-life/pkg && wasm-opt -Oz -o game_of_life_bg.wasm game_of_life_bg.wasm",
"build:wasm3": "wasm-pack build ./game-of-life --target web && python3 ./scripts/fixwasm.py",
"build:wasm": "wasm-pack build ./game-of-life --target web && python ./scripts/fixwasm.py",
"watch:wasm": "cd game-of-life && cargo watch -i .gitignore -i \"pkg/*\" -i \"target/*\" -s \"wasm-pack build --target web --dev\"",
"test:wasm": "cd game-of-life && wasm-pack test --firefox",
"dev": "vite",
"build": "vite build",
"package": "vite package",
"preview": "vite preview",
"lint": "prettier --ignore-path .gitignore --check --plugin-search-dir=. . && eslint --ignore-path .gitignore . --fix",
"format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. .",
"updatedeps": "npm update --save-dev && npm update --save"
},
"repository": {
"type": "git",
"url": "https://github.com/JakeBruner/jacobbruner.com"
},
"devDependencies": {
"@fontsource/inter": "^4.5.15",
"@fontsource/lato": "^4.5.10",
"@fontsource/nunito": "^4.5.12",
"@fontsource/rubik": "^4.5.14",
"@rgossiaux/svelte-headlessui": "^2.0.0",
"@rgossiaux/svelte-heroicons": "^0.1.2",
"@sveltejs/adapter-auto": "^3.2.3",
"@sveltejs/adapter-vercel": "^5.4.2",
"@sveltejs/kit": "^2.5.21",
"@sveltejs/vite-plugin-svelte": "^3.1.1",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/typography": "^0.5.14",
"@threlte/core": "^5.0.9",
"@threlte/extras": "^4.9.3",
"@tsconfig/svelte": "^3.0.0",
"@types/node": "^18.19.43",
"@types/three": "^0.148.1",
"@types/webgl2": "^0.0.6",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vercel/analytics": "^0.1.11",
"autoprefixer": "^10.4.20",
"cookie": "^0.5.0",
"esbuild": "^0.16.17",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-svelte3": "^4.0.0",
"game-of-life": "file:game-of-life/pkg",
"gpu-io": "^0.2.7",
"mdsvex": "^0.10.6",
"postcss": "^8.4.41",
"prettier": "^2.8.8",
"prettier-plugin-svelte": "^2.10.1",
"svelte": "^4.2.18",
"svelte-check": "^3.8.5",
"svelte-heros-v2": "^0.3.21",
"svelte-inview": "^3.0.4",
"svelte-preprocess": "^5.1.4",
"tailwindcss": "^3.4.9",
"tslib": "^2.6.3",
"typescript": "^5.5.4",
"vite": "^5.4.0",
"vite-plugin-wasm": "^3.3.0",
"web-vitals": "^3.5.2"
},
"type": "module",
"dependencies": {
"@fontsource/inter": "^4.5.15",
"@sveltejs/adapter-vercel": "^5.4.2",
"@vercel/analytics": "^0.1.11",
"@vercel/speed-insights": "^1.0.12",
"cookie": "^0.5.0",
"svelte-heros-v2": "^0.3.21",
"svelte-inview": "^3.0.4",
"web-vitals": "^3.5.2"
},
"overrides": {
"svelte": "$svelte",
"@sveltejs/adapter-auto": "$@sveltejs/adapter-auto"
}
}