-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.6 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.6 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
{
"name": "@ryanep/website",
"version": "0.0.0-development",
"license": "MIT",
"type": "module",
"scripts": {
"build": "next build",
"codegen": "graphql-codegen --config codegen.ts",
"dev": "next dev",
"favicons": "tsx ./scripts/favicons",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"next:start": "next start",
"prepare": "husky",
"release": "semantic-release",
"start": "serve -p 3000 ./out",
"test:integration": "playwright test",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"classix": "^2.2.2",
"dotenv": "^17.2.1",
"feed": "^5.1.0",
"framer-motion": "^12.23.12",
"graphql-request": "^7.2.0",
"i18next": "^25.4.0",
"i18next-resources-to-backend": "^1.2.1",
"i18next-xhr-backend": "^3.2.2",
"next": "^15.5.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-i18next": "^15.7.1",
"react-markdown": "^10.1.0",
"zod": "^4.0.17"
},
"devDependencies": {
"@axe-core/playwright": "^4.10.2",
"@codedependant/semantic-release-docker": "^5.1.1",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@graphql-codegen/add": "^5.0.3",
"@graphql-codegen/cli": "^5.0.7",
"@graphql-codegen/introspection": "^4.0.3",
"@graphql-codegen/near-operation-file-preset": "^3.1.0",
"@graphql-codegen/schema-ast": "^4.1.0",
"@graphql-codegen/typescript": "^4.1.6",
"@graphql-codegen/typescript-generic-sdk": "^4.0.2",
"@graphql-codegen/typescript-graphql-files-modules": "^3.0.1",
"@graphql-codegen/typescript-graphql-request": "^6.3.0",
"@graphql-codegen/typescript-operations": "^4.6.1",
"@graphql-codegen/typescript-react-apollo": "^4.3.3",
"@graphql-codegen/typescript-resolvers": "^4.5.1",
"@playwright/test": "^1.55.0",
"@ryanep/eslint-config": "^2.0.0",
"@ryanep/prettier-config": "^1.3.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/github": "^12.0.0",
"@semantic-release/release-notes-generator": "^14.1.0",
"@tailwindcss/postcss": "^4.1.12",
"@total-typescript/ts-reset": "^0.6.1",
"@types/node": "^22.0.0",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"autoprefixer": "^10.4.21",
"eslint": "^9.39.1",
"favicons": "^7.2.0",
"graphql": "^16.11.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"postcss": "^8.5.6",
"prettier": "^3.7.4",
"serve": "^14.2.4",
"tailwindcss": "^4.1.12",
"tsx": "^4.20.4",
"typescript": "^5.9.2"
}
}