-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.2 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
{
"name": "leaf-classification-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"server": "cd src && nodemon --exec ts-node server.ts",
"client": "cd client && yarn run dev",
"client-build": "cd client && yarn install && yarn build",
"prod": "yarn client-build",
"dev": "concurrently \"yarn server\" \"yarn client\"",
"build": "yarn client-build && yarn server"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/color-name": "^2.0.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/mongoose": "^5.11.97",
"@types/multer": "^1.4.12",
"@types/node-cron": "^3.0.11",
"@types/sharp": "^0.32.0",
"@types/swagger-ui-express": "^4.1.6",
"color-name": "^2.0.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"mongoose": "^8.6.3",
"multer": "^1.4.5-lts.1",
"node-cron": "^3.0.3",
"node-vibrant": "^3.2.1-alpha.1",
"sharp": "^0.33.5",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
},
"devDependencies": {
"concurrently": "^9.0.1",
"nodemon": "^3.1.7"
}
}