-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
84 lines (84 loc) · 2.37 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
{
"name": "mp_weixin_chatgpt",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"dev": "next dev",
"dev:test": "cross-env NODE_ENV=test next dev",
"production": "cross-env NODE_ENV=production next start",
"build": "next build",
"start": "next start",
"clean": "npm cache clear --force && rimraf package-lock.json pnpm-lock.yaml node_modules .next",
"lint": "next lint",
"test": "docker-compose up -d db && wait-on tcp:localhost:6306 && jest --detectOpenHandles"
},
"dependencies": {
"@types/autoprefixer": "^10.2.0",
"@vercel/analytics": "^1.0.1",
"@vercel/postgres": "^0.3.0",
"antd": "^5.4.7",
"bcrypt": "^5.1.0",
"classnames": "^2.3.2",
"cookie": "^0.5.0",
"crypto": "^1.0.1",
"date-fns": "^2.29.3",
"gray-matter": "^4.0.3",
"i18next": "^22.4.15",
"intl-pluralrules": "^2.0.0",
"iron-session": "^6.3.1",
"jsonwebtoken": "^9.0.0",
"mysql2": "^3.2.3",
"next": "^13.4.12",
"next-i18next": "^13.2.2",
"openai": "^3.2.1",
"pg": "^8.11.0",
"pg-hstore": "^2.3.4",
"react": "^18.2.0",
"react-dom": "18.2.0",
"react-i18next": "^12.2.2",
"react-markdown": "^8.0.7",
"react-select": "^5.7.3",
"rehype-parse": "^8.0.4",
"sequelize": "^6.31.1",
"sha1": "^1.1.1",
"sharp": "^0.32.1",
"swr": "^2.1.5",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie": "^0.5.1",
"@types/cookie-session": "^2.0.44",
"@types/jest": "^29.5.1",
"@types/jsonwebtoken": "^9.0.2",
"@types/memory-cache": "^0.2.2",
"@types/node": "^18.16.12",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.2.4",
"@types/sequelize": "^4.28.14",
"@types/sha1": "^1.1.3",
"@types/xmldom": "^0.1.31",
"autoprefixer": "^10.4.14",
"axios": "^1.3.6",
"chrome-debugging-client": "^2.0.0",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.38.0",
"eslint-config-next": "13.4.2",
"fs": "0.0.1-security",
"jest": "^29.5.0",
"js-base64": "^3.7.5",
"postcss": "^8.4.23",
"raw-loader": "^4.0.2",
"rimraf": "^5.0.0",
"sqlite3": "^5.1.6",
"ts-jest": "^29.1.0",
"typescript": "^4.9.5",
"wait-on": "^7.0.1",
"webpack": "^5.1.0",
"xmldom": "^0.6.0"
}
}