-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.08 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
{
"name": "antran-clothing-server",
"version": "1.0.0",
"engines": {
"node": "12.x"
},
"scripts": {
"client": "cd client && npm start",
"build": "cd client && npm install && npm run build",
"dev": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\"",
"start": "node server.js",
"server": "nodemon server.js",
"heroku-postbuild": "cd client && npm install && npm install --only=dev --no-shrinkwrap && npm run build"
},
"cacheDirectories": [
"node_modules",
"client/node_modules"
],
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "7.0.0",
"express": "^4.16.4",
"express-sslify": "^1.2.0",
"firebase": "^8.8.0",
"firebase-admin": "^10.0.1",
"googleapis": "^94.0.0",
"jsonwebtoken": "^8.5.1",
"nodemailer": "^6.7.2",
"stripe": "6.28.0"
},
"keywords": [
"node",
"heroku",
"create-react-app",
"react"
],
"devDependencies": {
"concurrently": "^6.3.0",
"nodemon": "^2.0.15"
}
}