-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 894 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 894 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
28
29
30
31
32
{
"name": "node-react",
"version": "1.0.0",
"description": "Web application to showcase how to integrate React, Node.js and Express. Full explanation and guide available on Medium.",
"main": "app.js",
"scripts": {
"start": "node app",
"server": "nodemon",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"build": "npm run build --prefix client",
"test": "mocha --recursive --exit"
},
"author": "",
"license": "ISC",
"dependencies": {
"@azure/storage-blob": "^12.10.0",
"cors": "^2.8.5",
"cross-fetch": "^3.1.4",
"dotenv": "^8.6.0",
"express": "^4.17.1",
"express-validator": "^6.10.0",
"multer": "^1.4.5-lts.1",
"multer-azure": "^2.0.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"chai": "^4.3.6",
"concurrently": "^6.0.2",
"mocha": "^10.0.0"
}
}