forked from Nickpodski/reel_junkie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.47 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "mern",
"version": "1.0.0",
"description": "",
"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",
"seed": "node scripts/seedDB.js",
"install": "cd client && npm install",
"build": "cd client && npm run build",
"heroku-postbuild": "npm run build"
},
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^6.2.0",
"nodemon": "^1.18.7"
},
"dependencies": {
"@tippyjs/react": "^4.2.5",
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"bcryptjs": "^2.4.3",
"bootstrap": "^4.6.0",
"bootstrap-icons": "^1.5.0",
"dotenv": "^9.0.2",
"express": "^4.16.3",
"if-env": "^1.0.4",
"materialize-css": "^1.0.0-rc.2",
"mongoose": "^5.12.8",
"react-bootstrap": "^1.6.0",
"react-bootstrap-icons": "^1.5.0",
"react-burger-menu": "^3.0.6",
"react-device-detect": "^1.17.0",
"react-icons": "^4.2.0",
"react-router-dom": "^5.2.0",
"react-toastify": "^7.0.4",
"validator": "^13.6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nickpodski/reel_junkie.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/Nickpodski/reel_junkie/issues"
},
"homepage": "https://github.com/Nickpodski/reel_junkie#readme"
}