-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.21 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 3.21 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
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "prompt-tester",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@google/generative-ai": "^0.24.0",
"@mui/icons-material": "^7.0.2",
"@mui/material": "^7.0.2",
"@supabase/supabase-js": "^2.56.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^13.5.0",
"@types/dompurify": "^3.0.5",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.126",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/uuid": "^10.0.0",
"axios": "^1.8.4",
"dompurify": "^3.2.6",
"langfuse": "^3.38.4",
"lodash": "^4.17.21",
"lucide-react": "^0.525.0",
"prismjs": "^1.30.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^10.1.0",
"react-query": "^3.39.3",
"react-resizable-panels": "^2.1.7",
"react-scripts": "5.0.1",
"react-syntax-highlighter": "^15.6.3",
"refractor": "^5.0.0",
"rehype-raw": "^7.0.0",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"typescript": "^4.9.5",
"uuid": "^11.1.0",
"web-vitals": "^2.1.4",
"zustand": "^5.0.8"
},
"scripts": {
"start": "craco start",
"build": "craco build && npm run inject-runtime-config",
"build:prod": "GENERATE_SOURCEMAP=false craco build && npm run inject-runtime-config",
"build:optimized": "CI=false GENERATE_SOURCEMAP=false INLINE_RUNTIME_CHUNK=false IMAGE_INLINE_SIZE_LIMIT=0 craco build && npm run inject-runtime-config",
"build:railway": "CI=false GENERATE_SOURCEMAP=false craco build && npm run inject-runtime-config",
"inject-runtime-config": "node scripts/inject-runtime-config.js",
"test": "craco test",
"test:ci": "react-scripts test --watchAll=false --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"lint": "eslint src --ext .ts,.tsx",
"type-check": "tsc --noEmit",
"eject": "react-scripts eject",
"serve": "serve -s build -l 3000"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"rules": {
"jest/no-conditional-expect": "off",
"testing-library/no-wait-for-multiple-assertions": "off",
"testing-library/no-node-access": "off",
"testing-library/no-wait-for-side-effects": "off",
"testing-library/no-container": "off",
"testing-library/render-result-naming-convention": "off",
"no-script-url": "off",
"@typescript-eslint/no-unused-vars": "warn",
"react-hooks/exhaustive-deps": "warn"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"overrides": {
"prismjs": "^1.30.0",
"refractor": "^5.0.0",
"nth-check": ">=2.0.1",
"on-headers": ">=1.1.0",
"postcss": ">=8.4.31",
"webpack-dev-server": "4.15.1"
},
"devDependencies": {
"@craco/craco": "^7.1.0",
"@playwright/test": "^1.55.0",
"@types/lodash": "^4.17.20",
"raw-loader": "^4.0.2",
"serve": "^14.2.4"
}
}