forked from interstellard/chatgpt-advanced
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.18 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
{
"private": true,
"name": "webchatgpt",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"build-dev": "node build.mjs",
"build-prod": "node build.mjs --create-zips",
"build-prod-min": "node build.mjs --create-zips --minify",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"watch": "chokidar src -c \"npm run build-dev\""
},
"dependencies": {
"lodash-es": "^4.17.21",
"preact": "^10.10.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/lodash-es": "^4.17.6",
"@types/uuid": "^9.0.0",
"@types/webextension-polyfill": "^0.10.0",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.52.0",
"archiver": "^5.3.1",
"autoprefixer": "^10.4.13",
"chokidar-cli": "^3.0.0",
"daisyui": "^2.47.0",
"esbuild": "^0.16.17",
"esbuild-copy-files-plugin": "^1.1.0",
"esbuild-style-plugin": "^1.6.1",
"eslint": "^8.20.0",
"eslint-config-preact": "^1.3.0",
"eslint-plugin-tailwindcss": "^3.8.3",
"fs-extra": "^11.1.0",
"jest": "^29.4.3",
"preact-cli": "^3.4.0",
"tailwindcss": "^3.2.4",
"typescript": "^4.5.2",
"webextension-polyfill": "^0.10.0"
}
}