forked from bradtraversy/mern_shopping_list
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.04 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
{
"name": "mern_typescript",
"version": "1.0.0",
"description": "MERN Stack with ES6 and Typescript Boilerplate",
"main": "server.js",
"scripts": {
"client-install": "npm install --prefix client",
"start": "node server.js",
"server": "nodemon server.js --exec babel-node --presets babel-preset-env",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"author": "Brad Traversy",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"concurrently": "^3.6.0",
"config": "^3.0.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.16.3",
"jsonwebtoken": "^8.5.0",
"mongoose": "^5.1.6"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.6",
"babel-preset-env": "^1.7.0",
"morgan": "^1.9.1",
"nodemon": "^1.17.5"
}
}