-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.03 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.03 KB
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": "web-client",
"version": "0.0.1",
"description": "web client",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel js/src -d js/build && npm run webpack",
"webpack": "webpack --config webpack.config.js",
"webpack-watch": "webpack --watch --progress"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Senior-Design-Kappa/web-client.git"
},
"author": "David Liao",
"license": "ISC",
"bugs": {
"url": "https://github.com/Senior-Design-Kappa/web-client/issues"
},
"homepage": "https://github.com/Senior-Design-Kappa/web-client#readme",
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.18.2",
"babel-loader": "^6.2.7",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"js-cookie": "^2.1.3",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.2"
},
"dependencies": {
"react-youtube": "^7.3.0"
}
}