-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 2.07 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
{
"name": "portfolio",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"dev": "vite --host",
"check": "tsc --noEmit && eslint .",
"build:spa:nocheck": "cross-env NODE_ENV=production vite build",
"build:spa": "npm run check && npm run build:spa:nocheck",
"build:ssg:nocheck": "cross-env BUILD_MODE=ssr NODE_ENV=production vite build --outDir=distSSG --ssr src/ssg.tsx",
"build:ssg": "npm run check && npm run build:ssg:nocheck",
"build:packages": "npm run check && npm run build:ssg:nocheck && npm run build:spa:nocheck",
"compress-artifacts": "node scripts/comp.js --formats=gzip,brotli",
"copy-licenses": "node scripts/copyLicenses.js",
"prerender": "node distSSG/ssg.js",
"build": "npm run build:packages && npm run prerender && npm run copy-licenses && npm run compress-artifacts",
"serve": "vite preview",
"subset": "node subset.mjs"
},
"dependencies": {
"@svelte-navigator/history": "^0.4.0",
"botex": "^0.1.1",
"classnames": "^2.3.1",
"preact": "^10.6.5"
},
"devDependencies": {
"@preact/preset-vite": "^2.1.7",
"@rollup/plugin-replace": "^3.0.1",
"@rollup/plugin-url": "^6.1.0",
"@types/css-declaration-sorter": "^6.0.1",
"@types/html-minifier-terser": "^6.1.0",
"@types/minimatch": "^3.0.5",
"@types/node": "^17.0.14",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"autoprefixer": "^10.4.2",
"cross-env": "^7.0.3",
"css-declaration-sorter": "^6.1.4",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"html-minifier-terser": "^7.0.0-alpha.1",
"minimatch": "^3.0.4",
"postcss": "^8.4.6",
"preact-render-to-string": "^5.1.19",
"preact-ssr-prepass": "^1.2.0",
"prettier": "^2.5.1",
"sass": "^1.49.4",
"ts-node": "^10.4.0",
"typescript": "^4.5.5",
"vite": "^2.8.1",
"vite-plugin-pwa": "^0.11.13",
"wasm-brotli": "^2.0.2",
"wasm-zopfli": "^1.0.2"
}
}