-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (56 loc) · 1.72 KB
/
package.json
File metadata and controls
59 lines (56 loc) · 1.72 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "coursera-dl-viewer",
"version": "1.0.0",
"description": "A web site to view coursera videos downloaded using coursera-dl",
"main": "build/public/main.bundle.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-watch": "./node_modules/.bin/webpack --progress --colors --watch",
"build": "./node_modules/.bin/webpack --progress --colors",
"start": "node build/server.js",
"run": "npm run build && npm run start",
"electron": "./node_modules/.bin/electron -r babel-register ./build/public/main.electron.bundle.js"
},
"author": "Tyler Rubenuik",
"license": "MIT",
"dependencies": {
"axios": "^0.16.1",
"body-parser": "^1.17.1",
"electron": "^1.6.11",
"express": "^4.15.2",
"extend": "^3.0.1",
"pg": "^6.1.5",
"pg-hstore": "^2.3.2",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-redux": "^5.0.5",
"react-router-dom": "^4.1.1",
"redux": "^3.6.0",
"sequelize": "^3.30.4",
"sqlite3": "^3.1.8",
"video.js": "^5.19.2"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-env": "^1.4.0",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.24.1",
"css-loader": "^0.28.1",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"hammerjs": "^2.0.8",
"html-webpack-plugin": "^3.2.0",
"jquery": "^3.2.1",
"materialize-css": "^0.98.2",
"node-sass": "^4.5.2",
"postcss-loader": "^2.0.5",
"resolve-url-loader": "^2.0.2",
"sass-loader": "^6.0.5",
"style-loader": "^0.17.0",
"webpack": "^2.5.1",
"webpack-dev-server": "^2.4.5",
"webpack-node-externals": "^1.6.0"
}
}