generated from hamitaksln/NextJS-Tailwind-Boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
32 lines (32 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
{
"name": "youtube-sync",
"version": "1.0.0",
"description": "Youtube Sync",
"main": "server.js",
"scripts": {
"client": "cd client && npm run dev",
"server": "nodemon server.js",
"dev": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\"",
"dev:server": "cd client && npm run build && cd .. && npm run start",
"start": "node server.js",
"heroku-postbuild": "cd client && npm install && npm install --only=dev --no-shrinkwrap && npm run build",
"build-apps": "cd client && npm install --only=dev --no-shrinkwrap && npm run build && cd .. && npm install"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.21.4",
"cheerio": "^1.0.0-rc.10",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.17.1",
"helmet": "^4.6.0",
"morgan": "^1.10.0",
"shortid": "^2.2.16",
"socket.io": "^4.1.2"
},
"devDependencies": {
"concurrently": "^5.3.0",
"nodemon": "^2.0.7"
}
}