-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
37 lines (37 loc) · 878 Bytes
/
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": "watch-with-me",
"version": "0.1.0",
"private": true,
"dependencies": {
"concurrently": "^4.1.0",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"pg": "^7.18.2",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-materialize": "^2.6.0",
"react-scripts": "^3.4.0",
"react-youtube": "^7.8.0",
"socket.io": "^2.2.0"
},
"scripts": {
"start": "node src/server/server.js",
"dev": "concurrently \"nodemon ./src/server/server.js\" \"react-scripts start\"",
"build": "react-scripts build",
"heroku-build": "npm install && npm run build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"nodemon": "^1.18.9"
}
}