-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 909 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
{
"name": "SimpleTube",
"version": "1.0.0",
"private": true,
"engines": {
"node": "10.x"
},
"description": "Gross Simplification of YouTube built on Node.js with React",
"repository": "https://github.com/govindrai/SimpleTube.git",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "concurrently \"webpack-dev-server\" \"nodemon index.js\"",
"heroku-postbuild": "webpack -p"
},
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.16.4",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"youtube-api-search": "0.0.5"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"concurrently": "^4.1.0",
"nodemon": "^1.18.9",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14"
}
}