-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.69 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
53
54
55
56
{
"name": "remanr",
"version": "1.0.0",
"description": "A full stack boiler plate",
"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 && npm install",
"build": "cd client && npm run build",
"seed": "node scripts/seedDB.js",
"heroku-postbuild": "cd client && npm install && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kima111/MEANR.git"
},
"author": "kima111",
"license": "ISC",
"bugs": {
"url": "https://github.com/kima111/MEANR/issues"
},
"homepage": "https://github.com/kima111/MEANR#readme",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-brands-svg-icons": "^5.13.0",
"@fortawesome/free-regular-svg-icons": "^5.13.0",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/react-fontawesome": "^0.1.9",
"@sendgrid/mail": "^7.0.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"concurrently": "^5.1.0",
"connect-mongo": "^3.2.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.0",
"helmet": "^3.21.3",
"mongoose": "^5.9.2",
"morgan": "^1.10.0",
"nodemon": "^2.0.2",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"socket.io": "^2.3.0",
"stripe": "^8.37.0",
"twilio": "^3.41.1",
"uuid": "^7.0.2"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.19.0"
}
}