-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 912 Bytes
/
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
{
"name": "robin",
"version": "1.22.5",
"description": "React Portfolio for Robin Bertuccelli",
"main": "server.js",
"engines": {
"node": "15.x"
},
"scripts": {
"server": "node server.js",
"client": "node scripts/start-client.js",
"start": "concurrently \"nodemon server.js\" \"npm run client\"",
"build": "node scripts/build.js",
"seed": "node scripts/seedDB.js",
"test": "echo \"Error: no test specified\" && exit 1",
"installDeps": "yarn && cd client && yarn"
},
"repository": "git@github.com:robinb242/singlePageReactPortfolio.git",
"author": "Robin Bertuccelli <robin.bertuccelli@gmail.com>",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"body-parser": "^1.18.3",
"express": "^4.16.3",
"mongoose": "^5.1.1",
"nodemailer": "^4.6.7"
},
"devDependencies": {
"concurrently": "^3.5.1",
"nodemon": "^1.17.4"
}
}