-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.53 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
{
"name": "gptapps",
"version": "0.0.1",
"description": "Gptapps - A collection of simple useful apps built on top of openai GPT",
"productName": "Gptapps",
"author": "Kevin Tam <kevin@glorat.net>",
"private": true,
"scripts": {
"lint": "eslint --ext .js,.ts,.vue ./",
"format": "prettier --write \"**/*.{js,ts,vue,scss,html,md,json}\" --ignore-path .gitignore",
"test": "vitest run",
"dev": "quasar dev",
"build": "quasar build -m pwa",
"test:unit": "vitest",
"test:unit:coverage": "vitest --coverage",
"test:unit:ci": "vitest run"
},
"dependencies": {
"@dqbd/tiktoken": "^1.0.7",
"@quasar/extras": "^1.0.0",
"@types/crypto-js": "^4.1.1",
"@types/lodash": "^4.14.195",
"@types/pino": "^7.0.5",
"@types/retry": "^0.12.2",
"@vitest/coverage-v8": "^0.32.0",
"@waylaidwanderer/fetch-event-source": "^3.0.1",
"axios": "^1.6.2",
"crypto-js": "^4.1.1",
"firebase": "^9.20.0",
"firebase-tools": "^11.28.0",
"firebaseui": "^6.0.2",
"form-data": "^4.0.0",
"franc": "^6.1.0",
"gpt-tokenizer": "^2.1.1",
"js-tiktoken": "^1.0.7",
"langchain": "^0.0.192",
"lodash": "^4.17.21",
"lru-cache": "^9.1.2",
"markdown-it": "^13.0.1",
"openai": "^4.0.0",
"pinia": "^2.0.11",
"pino": "^8.14.1",
"prismjs": "^1.29.0",
"quasar": "^2.6.0",
"retry": "^0.13.1",
"uuid": "^9.0.0",
"vue": "^3.0.0",
"vue-i18n": "^9.8.0",
"vue-router": "^4.0.0"
},
"devDependencies": {
"@quasar/app-vite": "^1.0.0",
"@quasar/quasar-app-extension-testing-unit-vitest": "^0.3.0",
"@types/node": "^12.20.21",
"@types/prismjs": "^1.26.0",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"@vue/test-utils": "^2.0.0",
"autoprefixer": "^10.4.2",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-vue": "^9.0.0",
"prettier": "^2.5.1",
"typescript": "^4.5.4",
"vitest": "^0.32.0",
"workbox-build": "^6.5.0",
"workbox-cacheable-response": "^6.5.0",
"workbox-core": "^6.5.0",
"workbox-expiration": "^6.5.0",
"workbox-precaching": "^6.5.0",
"workbox-routing": "^6.5.0",
"workbox-strategies": "^6.5.0"
},
"engines": {
"node": "^18",
"npm": ">= 6.13.4",
"yarn": ">= 1.21.1"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github"
]
}
}