forked from hejny/webgpt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
124 lines (124 loc) · 4.5 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "1-2i",
"version": "1.8.1",
"private": false,
"license": "SEE LICENSE IN LICENSE",
"description": "We are the ...",
"homepage": "https://1-2i.com/",
"repository": {
"type": "git",
"url": "https://github.com/hejny/1-2i"
},
"scripts": {
"dev": "cross-env NODE_OPTIONS='--inspect' next dev -p 4444",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "npm run test-unit && npm run test-integration-todo-fix",
"test-unit": "jest",
"test-integration-todo-fix": "",
"test-integration": "ts-node ./scripts/integration-test-with-server/integration-test-with-server.ts",
"test-integration-without-server": "./node_modules/.bin/cypress run",
"test-integration-interactive": "./node_modules/.bin/cypress open",
"test-build": "npm run build",
"test-types": "tsc",
"test-with-lighthouse": " lighthouse https://collboard.com/ --output html --output-path ./other/lighthouse-reports/report.html --view",
"prettier": "prettier --config .prettierrc --ignore-unknown --write \"{pages,public,styles}/**/*\"",
"prettier-commit": "git diff --exit-code && npm run prettier && git add . && git commit --allow-empty -m \"🧹 Prettier\"",
"preversion": "git pull && npm run prettier-commit && npm run test-types && npm run lint && npm test && npm run test-build",
"postversion": "git push && git push --tags && echo \"Check the deploy process: https://github.com/hejny/aiai/actions/\""
},
"dependencies": {
"@aws-sdk/client-s3": "3.378.0",
"@azure/cognitiveservices-computervision": "8.2.0",
"@azure/ms-rest-azure-js": "2.1.0",
"@faker-js/faker": "8.0.2",
"@monaco-editor/react": "4.5.1",
"@supabase/supabase-js": "2.26.0",
"@types/file-saver": "2.0.5",
"@vercel/og": "0.5.8",
"babylonjs": "6.17.0",
"configchecker": "1.5.1",
"crypto-js": "4.1.1",
"destroyable": "0.12.0",
"everstorage": "1.13.0",
"file-saver": "2.0.5",
"formidable": "3.5.0",
"html-react-parser": "3.0.12",
"insta-fetcher": "1.3.26",
"isomorphic-fetch": "3.0.0",
"jszip": "3.10.1",
"lodash": "4.17.21",
"markdown-to-txt": "2.0.1",
"n12": "1.6.0",
"next": "13.4.12",
"next-remove-imports": "1.0.11",
"next-router-mock": "0.9.3",
"node-gzip": "1.1.2",
"openai": "4.2.0",
"prettier": "2.8.1",
"puppeteer": "20.8.3",
"raw-loader": "4.0.2",
"react": "18.2.0",
"react-color": "2.19.3",
"react-dom": "18.2.0",
"rxjs": "7.8.1",
"seedrandom": "3.0.5",
"sharp": "0.31.3",
"showdown": "2.1.0",
"showdown-highlight": "3.1.0",
"spacetrim": "0.9.0",
"typescript": "4.9.4",
"uuid": "9.0.0",
"waitasecond": "1.11.1",
"whoiser": "1.17.1",
"xmldom-qsa": "1.1.3",
"xyzt": "5.4.0",
"yaml": "2.2.2"
},
"devDependencies": {
"@total-typescript/ts-reset": "0.4.2",
"@types/crypto-js": "4.1.1",
"@types/formidable": "3.4.1",
"@types/isomorphic-fetch": "0.0.36",
"@types/jest": "29.2.6",
"@types/jimp": "0.2.28",
"@types/js-yaml": "4.0.5",
"@types/lodash": "4.14.191",
"@types/node": "18.11.18",
"@types/node-gzip": "1.1.0",
"@types/prettier": "2.7.2",
"@types/react": "18.0.26",
"@types/react-color": "3.0.6",
"@types/react-dom": "18.0.10",
"@types/seedrandom": "3.0.4",
"@types/showdown": "2.0.0",
"@types/styled-components": "5.1.26",
"@types/uuid": "9.0.2",
"autoprefixer": "10.4.14",
"chalk": "4.1.2",
"chatgpt": "5.2.4",
"chokidar-cli": "3.0.0",
"commander": "9.4.1",
"cross-env": "7.0.3",
"cypress": "12.3.0",
"dotenv": "16.0.3",
"eslint": "8.31.0",
"eslint-config-next": "13.1.1",
"gh-pages": "4.0.0",
"glob-promise": "6.0.1",
"jest": "29.4.0",
"jest-environment-jsdom": "29.4.0",
"jimp": "0.22.7",
"js-yaml": "4.1.0",
"jsdom": "21.1.1",
"locate-app": "2.0.0",
"moment": "2.29.4",
"organize-imports-cli": "0.10.0",
"prettier": "2.8.1",
"supabase": "1.77.9",
"ts-jest": "29.0.5",
"ts-node": "10.9.1",
"type-fest": "3.10.0"
}
}