-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 793 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 793 Bytes
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
{
"name": "server",
"version": "1.0.0",
"description": "A template of a file uploader providing the solid foundations for any application that requires the use of a fullstack application with uploading files",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node app.js",
"server": "nodemon --quiet server",
"client": "npm run --prefix client dev",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.7.3",
"cors": "^2.8.5",
"express": "^4.19.2",
"multer": "^1.4.5-lts.1",
"ocr-space-api-wrapper": "^2.3.1"
},
"devDependencies": {
"concurrently": "^8.2.2",
"nodemon": "^3.1.4"
}
}