-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.37 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
{
"name": "gnops",
"version": "1.0.0",
"description": "gnops",
"main": "index.js",
"type": "module",
"scripts": {
"dev:hugo": "hugo --watch --gc -e default --printUnusedTemplates --printI18nWarnings",
"dev:search": "npx pagefind --site temp",
"dev:vite": "vite --host",
"dev": "rm -rf temp/* && run-p dev:hugo dev:search dev:vite",
"preview:hugo": "hugo -e default",
"preview": "rm -rf build/* && rm -rf temp/* && run-s preview:hugo build:vite",
"build:hugo": "hugo -e production",
"build:search": "npx pagefind --site temp",
"build:vite": "tsc && vite build",
"build": "rm -rf build/* && rm -rf temp/* && run-s build:hugo build:search build:vite"
},
"keywords": [],
"author": "",
"license": "",
"devDependencies": {
"@tailwindcss/typography": "^0.5.13",
"@types/node": "^22.10.1",
"autoprefixer": "^10.4.19",
"hugo-bin": "^0.137.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"prettier-plugin-go-template": "^0.0.15",
"prettier-plugin-tailwindcss": "^0.5.6",
"tailwindcss": "^3.3.3",
"typescript": "^5.4.5",
"vite": "^5.2.12",
"vite-plugin-node-polyfills": "^0.22.0"
},
"dependencies": {
"@barba/core": "^2.10.3",
"@fontsource-variable/inter": "^5.0.19",
"@fontsource/inter": "^5.0.19",
"@types/three": "^0.171.0",
"gsap": "^3.12.5",
"three": "^0.172.0"
}
}