-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.04 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
{
"name": "walkout.tv",
"version": "0.0.1",
"description": "Live protest stream aggregator",
"scripts": {
"build": "webpack --config webpack.dev.js",
"watch": "webpack --config webpack.dev.js --watch",
"start": "webpack-dev-server --config webpack.dev.js",
"start-dev-proxy": "node server/index.js 3000",
"start-proxy": "node server/index.js 80",
"release": "webpack --config webpack.prod.js"
},
"author": "Larry Xu",
"devDependencies": {
"@types/papaparse": "^5.0.3",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/video.js": "^7.3.9",
"copy-webpack-plugin": "^6.0.2",
"html-webpack-plugin": "^4.3.0",
"source-map-loader": "^1.0.0",
"ts-loader": "^7.0.5",
"typescript": "^3.9.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"papaparse": "^5.2.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"sanitize.css": "^11.0.1",
"video.js": "^7.8.2"
}
}