-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.96 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
{
"name": "sebastian-software-homepage",
"description": "Sebastian Software Homepage",
"private": false,
"sideEffects": false,
"type": "module",
"scripts": {
"test": "pnpm run --parallel /test:/",
"test:types": "tsc --noEmit",
"test:lint": "eslint .",
"test:json-schema": "pnpm create:json-schema ; ajv -s ./.tmp/data.schema.json -d 'app/data/*.json'",
"create:json-schema": "mkdir -p ./.tmp && typescript-json-schema app/data/data.types.ts ProjectsType -o ./.tmp/data.schema.json --skipLibCheck --ignoreErrors --required",
"create:favicons": "effective-favicon app/components/page/favicon",
"fix": "eslint --fix .; prettier --write .",
"format": "prettier --write .",
"test:format": "prettier --check .",
"build": "remix vite:build",
"dev": "remix vite:dev",
"sst:dev": "sst dev --stage development remix vite:dev",
"start": "NODE_OPTIONS='--import ./instrumentation.server.mjs' remix-serve ./build/server/index.js",
"opt:svg": "svgo --folder app --recursive",
"update:latest": "ncu --deep --upgrade --interactive",
"update:minor": "ncu --deep --upgrade --interactive --target minor",
"update:pnpm": "corepack up",
"deploy:prod": "sst deploy --stage production",
"deploy:dev": "sst deploy --stage development"
},
"dependencies": {
"@aws-lite/client": "^0.22.4",
"@aws-lite/dynamodb": "^0.3.8",
"@effective/shadow": "^1.1.0",
"@remix-run/node": "^2.11.2",
"@remix-run/react": "^2.11.2",
"@remix-run/serve": "^2.11.2",
"@sentry/remix": "^8.26.0",
"@sentry/vite-plugin": "^2.22.2",
"@unpic/react": "^0.1.14",
"clsx": "^2.1.1",
"feed": "^4.2.2",
"isbot": "^5.1.16",
"nanoid": "^5.0.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"remark-frontmatter": "^5.0.0",
"remark-mdx-frontmatter": "^5.0.0",
"web-vitals": "^4.2.3"
},
"devDependencies": {
"@aws-lite/dynamodb-types": "^0.3.10",
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@effective/color": "^1.0.1",
"@effective/css-reset": "^3.1.0",
"@effective/eslint-config": "^5.4.7",
"@effective/favicon": "^2.3.0",
"@mdx-js/rollup": "^3.0.1",
"@remix-run/dev": "^2.11.2",
"@storybook/react": "^8.2.9",
"@types/node": "^20.14.15",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vanilla-extract/css": "^1.15.3",
"@vanilla-extract/vite-plugin": "^4.0.13",
"@vercel/remix": "^2.11.2",
"ajv-cli": "^5.0.0",
"eslint": "^8.57.0",
"npm-check-updates": "^17.0.6",
"prettier": "^3.3.3",
"sst": "^0.1.21",
"svgo": "^3.3.2",
"tsx": "^4.17.0",
"typescript": "^5.5.4",
"typescript-json-schema": "^0.64.0",
"vite": "^5.4.1",
"vite-tsconfig-paths": "^4.3.2"
},
"packageManager": "pnpm@9.6.0+sha512.38dc6fba8dba35b39340b9700112c2fe1e12f10b17134715a4aa98ccf7bb035e76fd981cf0bb384dfa98f8d6af5481c2bef2f4266a24bfa20c34eb7147ce0b5e",
"engines": {
"node": ">=18.0.0"
}
}