-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 722 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 722 Bytes
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
{
"name": "youtube-sample-app",
"version": "1.0.0",
"description": "A sample app from Youtube api built on React",
"main": "index.js",
"scripts": {
"compile": "webpack",
"start": "node_modules/.bin/webpack-dev-server",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "Subash KC",
"license": "ISC",
"dependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-latest": "^6.24.1",
"babel-preset-react": "^6.24.1",
"lodash": "^4.17.4",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"webpack": "^2.6.0",
"youtube-api-search": "0.0.5"
},
"devDependencies": {
"webpack-dev-server": "^2.4.5"
}
}