-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
124 lines (124 loc) · 3.59 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "chat-visual-novel",
"version": "0.1.0",
"private": true,
"scripts": {
"prepare": "husky install",
"dev": "npm run prepare:data && cross-env NODE_ENV='development' next dev",
"build": "next build",
"postbuild": "next-sitemap",
"start": "npm run dev",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --check . -u",
"format:fix": "prettier --write . -u",
"postinstall": "npm run prepare:data",
"prepare:env": "npx vercel link && npx vercel env pull .env.local",
"prepare:data": "",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch"
},
"dependencies": {
"@chakra-ui/icons": "^2.0.17",
"@chakra-ui/react": "^2.5.1",
"@chakra-ui/spinner": "^2.0.13",
"@chakra-ui/system": "^2.5.1",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@formatjs/intl-localematcher": "^0.2.32",
"@planetscale/database": "^1.6.0",
"@prisma/client": "^4.11.0",
"@remirror/pm": "^2.0.4",
"@remirror/react": "^2.0.27",
"@remirror/react-editors": "^1.0.27",
"@tanstack/react-table": "^8.7.9",
"@types/jsonpath-plus": "^5.0.2",
"autosize": "^6.0.1",
"chakra-ui-markdown-renderer": "^4.1.0",
"client-only": "^0.0.1",
"dagre": "^0.8.5",
"dotparser": "^1.1.1",
"encoding": "^0.1.13",
"expr-eval": "^2.0.2",
"formik": "^2.2.9",
"framer-motion": "^10.0.1",
"jsonpath-plus": "^7.2.0",
"kysely": "^0.23.5",
"kysely-planetscale": "^1.3.0",
"lodash-es": "^4.17.21",
"mermaid": "^10.0.2",
"negotiator": "^0.6.3",
"next": "13.2.3",
"next-sitemap": "^4.0.2",
"node-fetch": "^2",
"openai": "^3.2.1",
"react": "18.2.0",
"react-color": "^2.19.3",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "18.2.0",
"react-json-view": "^1.21.3",
"react-markdown": "^8.0.5",
"react-spinners": "^0.13.8",
"react-syntax-highlighter": "^15.5.0",
"reactflow": "^11.6.0",
"remark-gfm": "^3.0.1",
"remirror": "^2.0.26",
"server-only": "^0.0.1",
"sharp": "^0.31.3",
"svg-pan-zoom": "^3.6.1",
"typescript": "4.9.5",
"use-debounce": "^9.0.3"
},
"devDependencies": {
"@svgr/webpack": "^6.5.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/autosize": "^4.0.1",
"@types/dagre": "^0.7.48",
"@types/jsonpath": "^0.2.0",
"@types/lodash-es": "^4.17.6",
"@types/negotiator": "^0.6.1",
"@types/node": "18.14.5",
"@types/node-fetch": "^2.6.2",
"@types/papaparse": "^5.3.7",
"@types/react": "18.0.28",
"@types/react-color": "^3.0.6",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/react-dom": "18.0.11",
"@types/react-syntax-highlighter": "^15.5.6",
"@types/tunnel": "^0.0.3",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"autoprefixer": "^10.4.13",
"cross-env": "^7.0.3",
"eslint": "8.35.0",
"eslint-config-next": "13.2.3",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"js-yaml": "^4.1.0",
"lint-staged": "^13.1.2",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"prisma": "^4.11.0",
"tailwindcss": "^3.2.7",
"tunnel": "^0.0.6",
"walkdir": "^0.4.1",
"yaml-loader": "^0.8.0"
},
"overrides": {
"react-json-view": {
"react": "$react",
"react-dom": "$react-dom"
},
"flux": {
"react": "$react",
"react-dom": "$react-dom"
}
},
"engines": {
"npm": ">=8.11.0",
"node": ">=16.19.0"
}
}