-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 739 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 739 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
{
"name": "MERN-Stack-Skeleton",
"version": "1.0.0",
"description": "MERN skeleton",
"main": "app.js",
"repository": "https://github.com/Timpan4/MERN-Stack-Skeleton",
"author": "Tim Aronsson",
"license": "MIT",
"packageManager": "yarn@3.2.0",
"scripts": {
"start": "node app",
"server": "nodemon",
"client": "cd frontend && npm start",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"build": "npm run build --prefix client"
},
"dependencies": {
"concurrently": "^7.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-validator": "^6.14.0",
"nodemon": "^2.0.15"
}
}