-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.14 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.14 KB
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
{
"name": "cognimates-web",
"version": "1.0.0",
"description": "Training interface for Cognimates AI platform",
"main": "src/index.js",
"engines": {
"node": "18.x"
},
"scripts": {
"start": "node src/index.js",
"build": "npm install && npm run sass-build",
"dev": "nodemon src/index.js",
"sass-build": "sass scss/style.scss static/css/style.css",
"test": "jest",
"lint": "eslint src/**/*.js"
},
"dependencies": {
"@google-cloud/aiplatform": "^3.16.0",
"@google-cloud/storage": "^7.11.0",
"adm-zip": "^0.5.16",
"async": "^3.2.6",
"axios": "^1.7.7",
"body-parser": "^1.20.3",
"clarifai-nodejs-grpc": "^10.9.8",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.21.1",
"express-busboy": "^10.1.0",
"express-handlebars": "^7.1.3",
"express-rate-limit": "^7.2.0",
"express-validator": "^7.0.1",
"multer": "^1.4.5-lts.1",
"pb-util": "^1.0.3",
"sass": "^1.69.5",
"sharp": "^0.33.5",
"tmp": "^0.2.3",
"uuid": "^9.0.1"
},
"devDependencies": {
"eslint": "^8.57.0",
"jest": "^29.7.0",
"nodemon": "^3.1.4",
"supertest": "^6.3.4"
}
}