-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.31 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
33
34
35
36
37
38
39
40
41
42
{
"name": "standup-videos",
"version": "0.0.1",
"description": "Only the best videos for standing up",
"main": "index.js",
"scripts": {
"build": "rm -rf dist && webpack -p --config ./config/webpack.config.prod.js --progress --bail",
"deploy:prod": "yarn build && firebase use standup-videos && firebase deploy",
"start": "webpack-dev-server --config ./config/webpack.config.dev.js --hot --inline --progress"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WadePeterson/standup-videos.git"
},
"author": "Wade Petrerson",
"license": "ISC",
"bugs": {
"url": "https://github.com/WadePeterson/standup-videos/issues"
},
"homepage": "https://github.com/WadePeterson/standup-videos#readme",
"devDependencies": {
"@types/react": "^16.0.40",
"@types/react-dom": "^16.0.4",
"@types/react-redux": "^5.0.15",
"awesome-typescript-loader": "^3.1.3",
"css-loader": "^0.28.4",
"extract-text-webpack-plugin": "^2.1.0",
"html-webpack-plugin": "^2.28.0",
"node-sass": "^4.5.3",
"sass-loader": "^6.0.5",
"style-loader": "^0.18.2",
"typescript": "^2.7.2",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5"
},
"dependencies": {
"firebase": "^4.11.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-player": "^1.3.0"
}
}