-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.1 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3.1 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
81
82
83
84
85
86
87
88
89
90
91
{
"name": "justinfarrell",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "react-router build",
"dev": "react-router dev",
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"lint:debug": "pnpm run lint -- --debug",
"lint:fix": "pnpm run lint -- --fix",
"start": "PORT=8080 react-router-serve ./build/server/index.js",
"typecheck": "react-router typegen && tsc",
"format:fix": "prettier --write .",
"deploy": "flyctl deploy --remote-only",
"test": "pnpm run integration && pnpm run e2e",
"integration": "vitest --run",
"integration:watch": "vitest",
"e2e": "playwright test",
"e2e:ui": "playwright test --ui",
"preinstall": "npx only-allow pnpm"
},
"dependencies": {
"@heroicons/react": "^2.1.3",
"@react-router/node": "^7.10.1",
"@react-router/serve": "^7.10.1",
"@tsparticles/react": "^3.0.0",
"chalk": "^5.3.0",
"dompurify": "^3.1.2",
"framer-motion": "^11.1.7",
"html-react-parser": "^5.1.10",
"isbot": "^4.1.0",
"marked": "^12.0.2",
"openai": "^4.95.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router": "^7.10.1",
"tsparticles": "^3.5.0",
"winston": "^3.14.2",
"winston-loggly-bulk": "^3.3.3"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.5.7",
"@playwright/test": "^1.57.0",
"@react-router/dev": "^7.10.1",
"@react-router/fs-routes": "^7.10.1",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.2",
"@types/dompurify": "^3.0.5",
"@types/node": "^22.5.2",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@types/winston-loggly-bulk": "^3.0.6",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"autoprefixer": "^10.4.19",
"daisyui": "^4.9.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-es": "^4.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prefer-arrow-functions": "3.4.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-tailwindcss": "^3.15.1",
"happy-dom": "20.0.11",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.13",
"tailwindcss": "^3.4.3",
"typescript": "^5.1.6",
"vite": "^5.4.21",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "^3.1.2"
},
"engines": {
"node": ">=18.0.0"
},
"pnpm": {
"overrides": {
"axios": "1.13.2",
"glob": "10.5.0",
"valibot": "1.2.0",
"esbuild": "0.27.1",
"js-yaml": "4.1.1",
"vite": "5.4.21"
}
}
}