-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
80 lines (80 loc) · 2.3 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
{
"name": "next-gpt",
"version": "2.7.4",
"private": true,
"scripts": {
"dev": "next dev",
"start": "rm -rf .next && next dev",
"preview": "next start",
"build": "next build",
"lint": "eslint . --fix --quiet",
"type-check": "tsc",
"postinstall": "npx simple-git-hooks"
},
"dependencies": {
"@chakra-ui/react": "^2.8.1",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@nanostores/react": "^0.6.0",
"@tabler/icons-react": "^2.35.0",
"ahooks": "^3.7.8",
"axios": "^1.5.1",
"chakra-react-select": "^4.7.2",
"classnames": "^2.3.2",
"clipboard": "^2.0.11",
"eventsource-parser": "^1.1.1",
"framer-motion": "^10.16.4",
"github-markdown-css": "^5.2.0",
"gpt3-tokenizer": "^1.1.5",
"highlight.js": "^11.8.0",
"immer": "^10.0.2",
"katex": "^0.16.8",
"lodash": "^4.17.21",
"markdown-it": "^13.0.2",
"markdown-it-highlightjs": "^4.0.1",
"markdown-it-katex": "^2.0.3",
"nanostores": "^0.8.1",
"next": "^13.5.3",
"papaparse": "^5.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-textarea-autosize": "^8.5.3",
"uuid": "^9.0.1",
"zustand": "^4.4.1"
},
"devDependencies": {
"@antfu/eslint-config": "^2.8.3",
"@commitlint/cli": "^19.2.0",
"@commitlint/config-conventional": "^19.1.0",
"@types/lodash": "^4.14.199",
"@types/markdown-it": "^12.2.3",
"@types/node": "^18.18.0",
"@types/papaparse": "^5.3.9",
"@types/react": "^18.2.23",
"@types/react-dom": "^18.2.7",
"@types/uuid": "^9.0.4",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@unocss/eslint-config": "^0.58.6",
"@unocss/webpack": "^0.56.4",
"eslint": "^8.57.0",
"eslint-plugin-astro": "^0.31.4",
"eslint-plugin-format": "^0.1.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"lint-staged": "^15.2.2",
"prettier-plugin-astro": "^0.13.0",
"punycode": "^2.3.0",
"simple-git-hooks": "^2.11.0",
"typescript": "^5.2.2",
"unocss": "^0.58.6"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "npx --no-install commitlint --edit \"${1}\""
},
"lint-staged": {
"*": "eslint --fix"
}
}