-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.37 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.37 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "mern",
"version": "1.0.0",
"engines": {
"node": "16.x"
},
"description": "Mern Demo",
"main": "server.js",
"scripts": {
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:prod": "node server.js",
"start:dev": "concurrently \"nodemon --ignore 'client/*'\" \"npm run client\"",
"client": "cd client && npm run start",
"install": "cd client && yarn install",
"build": "cd client && npm run build",
"heroku-postbuild": "npm run build",
"test": "jest"
},
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^4.1.0",
"jest": "^24.9.0",
"nodemon": "^1.18.7"
},
"dependencies": {
"@types/jest": "^24.0.18",
"axios": "^0.18.0",
"bcrypt": "^3.0.2",
"benchmark": "^2.1.4",
"body-parser": "^1.18.3",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.3",
"css-loader": "1.0.0",
"express": "^4.16.4",
"express-messages": "*",
"express-session": "^1.15.6",
"express-validator": "^5.3.0",
"if-env": "^1.0.4",
"jest-cli": "^24.9.0",
"mongodb": "*",
"mongoose": "^5.3.15",
"morgan": "^1.9.0",
"passport": "^0.4.0",
"passport-http": "*",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^5.0.1",
"react-router-dom": "^4.3.1",
"react-scripts": "^3.1.2",
"yarn": "^1.17.3"
}
}