-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
83 lines (83 loc) · 2.53 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "youtube-desktop",
"productName": "Youtube Desktop",
"website": "http://www.youtubefordesktop.com/",
"version": "0.0.1",
"files": [
"**/*",
"app/assets/*"
],
"description": "Youtube Desktop Application",
"electronVersion": "1.7.10",
"main": "main.js",
"author": "David Hu <[email protected]> (http://www.davidhu.io)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/davidhu2000/youtube_desktop.git"
},
"scripts": {
"start": "electron .",
"clear": "rm -rf app/javascripts/* | rm index.html",
"watch": "$npm_execpath run clear | NODE_ENV=development webpack -w --env.dev",
"build": "$npm_execpath run clear && $npm_execpath run dev && $npm_execpath run start",
"dev": "NODE_ENV=development webpack --env.dev",
"prod": "NODE_ENV=production webpack --progress --env.prod",
"lint": "./node_modules/.bin/eslint . --ext .js,.jsx",
"lint-file": "./node_modules/.bin/eslint",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"dist-all": "rm -rf ./dist && NODE_ENV=production webpack --progress --env.prod && electron-builder -mwl",
"postinstall": "electron-builder install-app-deps",
"test": "echo \"No tests specified\" && exit 0"
},
"dependencies": {
"lodash": "^4.17.4",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-autobind": "^1.0.6",
"react-click-outside": "^3.0.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"react-router": "^3.0.2",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"superagent": "^3.8.2",
"youtube-player": "^5.4.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.1.1",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"electron": "^1.7.10",
"electron-builder": "^20.5.1",
"eslint": "^4.19.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"html-webpack-plugin": "^2.30.1",
"webpack": "^3.10.0"
},
"build": {
"appId": "com.youtubeforedesktop.www",
"linux": {
"category": "VideoApp",
"target": "deb",
"icon": "./icons/png/"
},
"win": {
"target": "nsis",
"icon": "./icons/ico/icon.ico"
},
"mac": {
"category": "public.app-category.video",
"target": "dmg",
"icon": "./icons/mac/icon.icns"
}
}
}