-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.07 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
{
"name": "equilibre",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"server": "cd chatgpt-backend && node index.js",
"client": "vite",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
"format": "prettier --write src/"
},
"dependencies": {
"@scenaristeur/horde-vue": "^1.0.2",
"axios": "^1.6.2",
"concurrently": "^8.2.2",
"langchain": "^0.0.212",
"node-llama-cpp": "^2.8.3",
"open": "^9.1.0",
"smooth-scroll-into-view-if-needed": "^2.0.2",
"uuid": "^9.0.1",
"vite-plugin-pwa": "^0.17.4",
"vue": "^3.3.11",
"vue-i18n": "^9.9.0",
"vue-router": "^4.2.5",
"vuex": "^4.0.2"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.3.3",
"@vitejs/plugin-vue": "^4.5.2",
"@vue/eslint-config-prettier": "^8.0.0",
"eslint": "^8.49.0",
"eslint-plugin-vue": "^9.17.0",
"prettier": "^3.0.3",
"vite": "^5.0.10"
}
}