-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.65 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.65 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
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
{
"name": "acfharbinger-personal-website",
"version": "1.0.0",
"private": true,
"description": "A personal website and knowledge base built with Next.js, React, and TypeScript.",
"author": "ACFHarbinger",
"keywords": [
"nextjs",
"react",
"typescript",
"tailwind",
"portfolio"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"benchmark:build": "npm run build",
"benchmark": "node benchmark/measure.mjs",
"postbuild": "ln -sfn . out/github-pages",
"start": "npx serve@latest out",
"lint": "next lint",
"deploy": "next build && touch out/.nojekyll",
"test": "vitest run",
"test:watch": "vitest",
"test:unit": "vitest run test/unit",
"test:integration": "vitest run test/integration",
"cypress:open": "cd test/cypress && cypress open",
"cypress:run": "cd test/cypress && cypress run",
"cypress:e2e": "cd test/cypress && cypress run --spec \"e2e/**/*.cy.js\"",
"cypress:smoke": "cd test/cypress && cypress run --spec \"smoke/**/*.cy.js\"",
"docs:start": "npm --prefix docs/website start",
"docs:build": "npm --prefix docs/website run build",
"docs:serve": "npm --prefix docs/website run serve",
"docs:storybook": "npm --prefix docs/website run storybook",
"docs:lint": "npm --prefix docs/website run lint",
"docs:build:astro": "npm --prefix docs/website run build:astro",
"docs:next:dev": "npm --prefix docs/website run next:dev",
"docs:next:build": "npm --prefix docs/website run next:build"
},
"homepage": "https://acfharbinger.github.io/github-pages",
"dependencies": {
"@tanstack/react-form": "^1.33.4",
"astro": "^7.2.0",
"aurelia": "^2.0.0-rc.2",
"framer-motion": "^13.0.0",
"gray-matter": "^4.0.3",
"lucide-react": "^0.383.0",
"next": "^14.2.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-redux": "^9.3.0",
"react-router-dom": "^7.18.2",
"redux": "^5.0.1",
"remark": "^15.0.1",
"remark-html": "^16.0.1",
"serve": "^14.2.5",
"three": "^0.179.1"
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.2.3",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^20.12.12",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/three": "^0.179.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.19",
"cypress": "^15.8.2",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.3",
"jsdom": "^25.0.0",
"msw": "^2.4.9",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5",
"vitest": "^2.1.1"
}
}