-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.34 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.34 KB
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
{
"name": "atomone",
"version": "1.0.0",
"description": "atomone",
"main": "index.js",
"type": "module",
"scripts": {
"dev:hugo": "hugo --watch --gc -e default --buildFuture --printUnusedTemplates --printI18nWarnings",
"dev:vite": "vite --host",
"dev": "rm -rf temp/* && run-p dev:hugo dev:vite",
"preview:hugo": "hugo -e default --buildFuture",
"preview": "rm -rf build/* && rm -rf temp/* && run-s preview:hugo build:vite",
"build:hugo": "hugo -e production --buildFuture",
"build:vite": "tsc && vite build",
"build": "rm -rf build/* && rm -rf temp/* && run-s build:hugo build:vite"
},
"keywords": [],
"author": "",
"license": "",
"devDependencies": {
"@tailwindcss/typography": "^0.5.16",
"@types/jsonp": "^0.2.3",
"@types/katex": "^0.16.8",
"@types/node": "^22.10.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"prettier-plugin-go-template": "^0.0.15",
"prettier-plugin-tailwindcss": "^0.5.6",
"vite": "^5.2.12",
"vite-plugin-node-polyfills": "^0.22.0"
},
"dependencies": {
"@fontsource-variable/inter": "^5.0.19",
"@fontsource/inter": "^5.0.19",
"@plausible-analytics/tracker": "^0.4.4",
"@tailwindcss/vite": "^4.0.4",
"bech32": "^2.0.0",
"jsonp": "^0.2.1",
"katex": "^0.16.45",
"tailwindcss": "^4.0.4",
"typescript": "^5.7.3"
}
}