-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.07 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
{
"name": "aura-match",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "index.js",
"scripts": {
"dev": "concurrently \"npm run client:dev\" \"npm run server:dev\"",
"client:dev": "vite dev --host 0.0.0.0",
"server:dev": "NODE_ENV=development nodemon ./server.js",
"serve": "concurrently --kill-others \"NODE_ENV=production nodemon ./server.js\" \"vite dev\"",
"build": "vite build",
"start": "node ./server.js"
},
"author": "",
"license": "ISC",
"git": {
"scripts": {
"pre-push": "npx git-scripts-pre-push"
}
},
"devDependencies": {
"concurrently": "^8.2.0",
"cross-env": "^7.0.3",
"nodemon": "^3.0.1",
"vite": "^4.4.3"
},
"dependencies": {
"@mediapipe/tasks-vision": "^0.10.2-rc2",
"@tensorflow/tfjs-core": "^4.8.0",
"body-parser": "^1.20.2",
"canvas": "^2.11.2",
"compute-cosine-similarity": "^1.0.0",
"cors": "^2.8.5",
"euclidean-distance": "^1.0.0",
"express": "^4.18.2",
"jsdom": "^22.1.0",
"multer": "^1.4.5-lts.1",
"node-gzip": "^1.1.2"
}
}