-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.09 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.09 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
{
"name": "Agronify-api",
"version": "1.0.0",
"main": "build/index.js",
"repository": "[email protected]:Agronify/Agronify-api.git",
"author": "Muhammad Eko <[email protected]>",
"license": "MIT",
"scripts": {
"build": "npx tsc",
"start": "node build/index.js",
"start:prod": "yarn install --prod && yarn build && yarn start",
"dev": "concurrently \"npx tsc --watch\" \" nodemon -q build/index.js\""
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^20.1.1",
"concurrently": "^8.0.1",
"nodemon": "^2.0.22",
"prisma": "^4.14.0"
},
"dependencies": {
"@google-cloud/storage": "^6.10.1",
"@hapi/hapi": "^21.3.2",
"@prisma/client": "^4.14.0",
"@tensorflow/tfjs-node": "^4.6.0",
"@types/bcryptjs": "^2.4.2",
"@types/jsonwebtoken": "^9.0.2",
"@types/mv": "^2.1.2",
"axios": "^1.4.0",
"bcryptjs": "^2.4.3",
"dotenv": "^16.0.3",
"extract-zip": "^2.0.1",
"hapi-auth-jwt2": "^10.4.0",
"jsonwebtoken": "^9.0.0",
"mv": "^2.1.1",
"sharp": "^0.32.1",
"typescript": "^5.0.4"
}
}