-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.29 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
{
"name": "atomicsearch",
"version": "1.0.0",
"private": true,
"type": "module",
"license": "Apache-2.0",
"scripts": {
"start": "vite preview",
"build": "vite build",
"dev": "vite",
"eslint:fix": "eslint --fix client",
"prettier:check": "prettier --check 'client/**/*.{ts,js,jsx,tsx,json}'",
"prettier:fix": "prettier --write 'client/**/*.{ts,js,jsx,tsx,json}'",
"test": "glob -c 'tsx --test' '**/*.test.ts'"
},
"dependencies": {
"@capacitor/android": "^6.0.0",
"@capacitor/core": "^6.0.0",
"@capacitor/ios": "^6.0.0",
"@energetic-ai/core": "^0.2.0",
"@energetic-ai/embeddings": "^0.2.0",
"@energetic-ai/model-embeddings-en": "^0.2.0",
"@huggingface/hub": "^0.15.1",
"@mlc-ai/web-llm": "^0.2.46",
"@ratchet-ml/ratchet-web": "^0.4.0",
"@stripe/stripe-js": "^3.5.0",
"@wllama/wllama": "^1.11.0",
"canvas-confetti": "^1.9.3",
"create-pubsub": "^1.6.3",
"hash-wasm": "^4.11.0",
"html-to-text": "^9.0.5",
"http-compression": "^1.0.20",
"http-status-codes": "^2.3.0",
"inter-ui": "^4.0.2",
"keyword-extractor": "^0.0.28",
"markdown-to-jsx": "^7.3.2",
"mobile-detect": "^1.4.5",
"node-emoji": "^2.1.3",
"node-fetch": "^3.3.2",
"node-llama-cpp": "^3.0.0-beta.22",
"pino": "^9.1.0",
"rate-limiter-flexible": "^5.0.2",
"react": "^18.2.0",
"react-confetti": "^6.1.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.2.1",
"react-phone-number-input": "^3.4.3",
"react-router-dom": "^6.23.1",
"react-textarea-autosize": "^8.5.3",
"react-tooltip": "^5.21.6",
"styled-components": "^6.1.11",
"temp-dir": "^3.0.0",
"water.css": "^2.1.1"
},
"devDependencies": {
"@capacitor/cli": "^6.0.0",
"@eslint/js": "^9.2.0",
"@types/canvas-confetti": "^1.6.4",
"@types/dom-speech-recognition": "^0.0.4",
"@types/html-to-text": "^9.0.4",
"@types/node": "^20.12.7",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-basic-ssl": "^1.1.0",
"@vitejs/plugin-react": "^4.0.3",
"eslint": "^9.0.0",
"glob": "^10.4.1",
"globals": "^15.0.0",
"prettier": "^3.3.2",
"tsx": "^4.15.4",
"typescript": "^5.0.2",
"typescript-eslint": "^7.6.0",
"vite": "^5.2.9"
}
}