This repository has been archived by the owner on Sep 11, 2023. It is now read-only.
generated from technologiestiftung/template-repo-citylab
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.85 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
{
"name": "eyes-of-ai",
"version": "1.3.2",
"private": true,
"description": "An OpenAI-based prototype that uses the Dall-E API to create parametrically personalized image of it's users.",
"main": "index.js",
"scripts": {
"predev": "npm run postbuild && npm run prebuild",
"dev": "next dev",
"dev:test": "NODE_ENV=test next dev",
"prebuild": "node scripts/generate-prompt-validator.cjs",
"postbuild": "node scripts/copy-human-assets-to-public.cjs",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/technologiestiftung/eyes-of-ai.git"
},
"keywords": [
"ai",
"api",
"dall-e"
],
"author": "Technologiestiftung Berlin",
"license": "MIT",
"bugs": {
"url": "https://github.com/technologiestiftung/eyes-of-ai/issues"
},
"homepage": "https://github.com/technologiestiftung/eyes-of-ai#readme",
"dependencies": {
"@supabase/supabase-js": "2.24.0",
"@tensorflow/tfjs-node": "4.6.0",
"@vladmandic/human": "3.0.6",
"@vladmandic/human-models": "3.0.4",
"base64-arraybuffer": "1.0.2",
"dotenv": "16.0.3",
"edge-csrf": "1.0.3",
"next": "13.4.4",
"openai": "3.2.1",
"react": "18.2.0",
"react-cookie": "4.1.1",
"react-dom": "18.2.0",
"uuid": "9.0.0",
"zustand": "4.3.8"
},
"devDependencies": {
"@technologiestiftung/semantic-release-config": "1.2.3",
"@testing-library/react": "14.0.0",
"@types/node": "20.5.7",
"@types/react": "18.2.21",
"@types/uuid": "9.0.2",
"@vitejs/plugin-react": "4.0.4",
"ajv": "8.12.0",
"ajv-cli": "5.0.0",
"autoprefixer": "10.4.15",
"eslint": "8.48.0",
"eslint-config-next": "13.4.19",
"eslint-config-prettier": "8.10.0",
"jsdom": "22.1.0",
"postcss": "8.4.28",
"prettier": "2.8.8",
"tailwindcss": "3.3.3",
"tsx": "3.12.7",
"typescript": "5.2.2",
"vitest": "0.34.3"
}
}