-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.06 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
{
"name": "phillyco-server",
"version": "1.0.0",
"engines": {
"node": "15.4.0",
"npm": "6.14.9"
},
"scripts": {
"client": "cd client && yarn start",
"server": "nodemon server.js",
"build": "cd client && npm run build",
"dev": "concurrently --kill-others-on-fail \"yarn server\" \"yarn client\"",
"start": "node server.js",
"heroku-postbuild": "cd client && npm install && npm install --only=dev --no-shrinkwrap && npm run build"
},
"dependencies": {
"@iconify/icons-ph": "^1.1.1",
"body-parser": "^1.18.3",
"bootstrap": "^4.6.0",
"compression": "1.7.4",
"cors": "2.8.5",
"dotenv": "7.0.0",
"emailjs-com": "^2.6.4",
"express": "^4.16.4",
"react-image-lightbox": "^5.1.1",
"reactstrap": "^8.9.0",
"stripe": "6.28.0",
"styled-components": "^5.2.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@iconify/icons-brandico": "^1.1.0",
"@iconify/icons-openmoji": "^1.1.0",
"@iconify/react": "^1.1.3",
"concurrently": "^4.0.1",
"husky": "^5.1.3",
"nodemon": "^1.19.1"
}
}