-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.14 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
{
"name": "crwn-clothing-server",
"version": "1.0.0",
"homepage": "https://rashidmakki.github.io/crwn-clothing",
"engines": {
"node": "10.15.3",
"npm": "6.4.1"
},
"scripts": {
"client": "cd client && yarn start",
"server": "nodemon server.js",
"build": "cd client && npm install && npm run build",
"dev": "concurrently --kill-others-on-fail \"yarn server\" \"yarn client\"",
"start": "cd client && npm install && npm install --only=dev --no-shrinkwrap && npm run build",
"heroku-postbuild": "cd client && npm install && npm install --only=dev --no-shrinkwrap && npm run build",
"predeploy": " cd client && npm run build",
"deploy": "cd client && gh-pages -d build"
},
"dependencies": {
"@chakra-ui/core": "^0.8.0",
"@emotion/core": "^10.0.34",
"@emotion/styled": "^10.0.27",
"body-parser": "^1.18.3",
"cors": "2.8.5",
"dotenv": "7.0.0",
"emotion-theming": "^10.0.27",
"express": "^4.16.4",
"express-sslify": "^1.2.0",
"gh-pages": "^6.1.1",
"stripe": "6.28.0",
"uuid": "^8.3.1"
},
"devDependencies": {
"concurrently": "^4.0.1",
"nodemon": "^1.19.1"
}
}