forked from rom1504/clip-retrieval
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.53 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
{
"name": "clip-retrieval-front",
"version": "2.31.1",
"description": "Easily compute clip embeddings and build a clip retrieval system with them. 100M text+image embeddings can be processed in 20h using a 3080.",
"main": "server.js",
"dependencies": {
"compression": "^1.7.4",
"express": "^4.17.1"
},
"repository": {
"type": "git",
"url": "https://github.com/rom1504/clip-retrieval.git"
},
"bin": {
"clip-retrieval-front": "./server.js"
},
"devDependencies": {
"@vaadin/vaadin-button": "^2.4.0",
"@vaadin/vaadin-combo-box": "^6.0.1",
"@vaadin/vaadin-select": "^3.0.0",
"@webcomponents/webcomponentsjs": "^2.2.4",
"bootstrap": "^4.5.2",
"dateformat": "^3.0.3",
"json-bigint": "^1.0.0",
"lit-element": "^2.0.1",
"lit-html": "^1.0.0",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^2.1.0",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^4.0.0-alpha",
"http-server": "^0.11.1",
"raw-loader": "^1.0.0",
"standard": "^12.0.1",
"style-loader": "^0.23.1",
"to-string-loader": "^1.1.5",
"webpack": "^4.14.0",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4",
"webpack-merge": "^4.1.3"
},
"scripts": {
"build": "webpack --env production",
"lint": "standard",
"fix": "standard --fix",
"prod-start": "npm run build && node server.js 3005",
"start": "webpack-dev-server --env development",
"test": "npm run lint"
},
"author": "Romain Beaumont",
"license": "MIT"
}