-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
172 lines (172 loc) · 5.55 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
{
"name": "pullp",
"version": "4.0.2",
"private": false,
"main": "public/electron-starter.js",
"license": "MIT",
"author": "Rick Clark <[email protected]>",
"description": "Pull request monitoring app for Github",
"homepage": "./",
"repository": "https://github.com/rkclark/pullp",
"scripts": {
"react:start": "cross-env BROWSER=none node scripts/start.js",
"react:build": "node scripts/build.js",
"serve": "npm run react:build && node server",
"stub:server": "nodemon stubServer",
"stub:start": "cross-env BROWSER=none REACT_APP_GITHUB_API_URL=http://localhost:3334/graphql REACT_APP_OAUTH_GATEKEEPER_URL=http://localhost:3334/authenticate REACT_APP_GITHUB_AUTH_URL=http://localhost:3334/oauth/authorize node scripts/start.js",
"stub": "run-p stub:*",
"test": "node scripts/test.js --config .jestrc.json --env=jsdom",
"test:no-watcher": "cross-env CI=true npm run test",
"style": "eslint '**/*.js'",
"style:fix": "eslint --fix '**/*.js'",
"validate": "npm run test && npm run style",
"precommit": "npm run style",
"cosmos": "cosmos",
"electron:start": "electron .",
"electron:start:prod": "cross-env NODE_ENV=production npm run electron:start",
"electron:start:dev": "cross-env ELECTRON_START_URL=http://localhost:3333/app npm run electron:start",
"electron": "npm run electron:start:prod",
"preelectron:pack": "npm run react:build",
"electron:pack": "rimraf dist && electron-builder -c.extraMetadata.main=build/electron-starter.js",
"pack": "npm run electron:pack -- --dir",
"dist": "npm run electron:pack",
"ship": "npm run electron:pack -- --publish always",
"start": "run-p -r electron:start:dev react:start",
"install-wsl": "npm install && npm uninstall electron && export npm_config_platform=win32 && npm install electron && unset npm_config_platform"
},
"dependencies": {
"apollo-cache-inmemory": "^1.6.6",
"apollo-cache-persist": "^0.1.1",
"apollo-client": "^2.3.5",
"apollo-link": "^1.2.2",
"apollo-link-context": "^1.0.9",
"apollo-link-error": "^1.1.0",
"apollo-link-http": "^1.5.4",
"apollo-link-state": "^0.4.2",
"body-parser": "^1.17.2",
"cors": "^2.8.4",
"cross-env": "^5.2.0",
"date-fns": "^1.29.0",
"dotenv": "^4.0.0",
"electron-debug": "^3.2.0",
"electron-is-dev": "^2.0.0",
"electron-updater": "^4.3.9",
"express": "^4.15.4",
"graphql": "^0.13.2",
"graphql-tag": "^2.9.2",
"helmet": "^3.6.1",
"lodash": "^4.17.15",
"node-fetch": "^1.7.3",
"prop-types": "^15.5.10",
"querystring": "^0.2.0",
"react": "^16.14.0",
"react-apollo": "^2.4.1",
"react-circular-progressbar": "^0.7.0",
"react-dom": "^16.14.0",
"react-flip-move": "^3.0.2",
"react-js-pagination": "^3.0.2",
"react-router-dom": "^4.1.1",
"react-tooltip": "^3.10.0",
"react-transition-group": "^2.4.0"
},
"devDependencies": {
"autoprefixer": "7.1.0",
"babel-core": "6.24.1",
"babel-eslint": "7.2.3",
"babel-jest": "20.0.3",
"babel-loader": "7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react-app": "^3.0.0",
"babel-runtime": "6.23.0",
"case-sensitive-paths-webpack-plugin": "1.1.4",
"chalk": "1.1.3",
"css-loader": "0.28.1",
"debug": "^2.6.8",
"electron": "^14.0.1",
"electron-builder": "^22.11.7",
"electron-devtools-installer": "3.2.0",
"electron-log": "^4.4.1",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-config-prettier": "^2.3.0",
"eslint-config-react-app": "^1.0.4",
"eslint-loader": "1.7.1",
"eslint-plugin-flowtype": "2.33.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "5.0.3",
"eslint-plugin-prettier": "^2.1.2",
"eslint-plugin-react": "7.0.1",
"extract-text-webpack-plugin": "2.1.0",
"fetch-mock": "^5.12.2",
"file-loader": "0.11.1",
"fs-extra": "3.0.1",
"html-webpack-plugin": "2.28.0",
"husky": "^0.14.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.1.0",
"jest-transform-graphql": "^2.1.0",
"mockdate": "^2.0.2",
"nodemon": "^1.17.5",
"npm-run-all": "^4.1.3",
"object-assign": "4.1.1",
"postcss-css-variables": "^0.8.0",
"postcss-flexbugs-fixes": "^3.0.0",
"postcss-import": "^11.0.0",
"postcss-loader": "2.0.5",
"prettier": "^1.5.3",
"promise": "7.1.1",
"react-cosmos": "^4.6.4",
"react-cosmos-background-proxy": "^1.0.1",
"react-cosmos-router-proxy": "^4.6.1",
"react-dev-utils": "^3.0.0",
"react-error-overlay": "^1.0.7",
"react-router-enzyme-context": "^1.2.0",
"react-test-renderer": "^15.6.1",
"rimraf": "^2.6.3",
"sinon": "^5.0.10",
"style-loader": "0.17.0",
"supertest": "^3.0.0",
"sw-precache-webpack-plugin": "0.9.1",
"url-loader": "^1.1.2",
"webpack": "2.6.1",
"webpack-dev-server": "^2.11.5",
"webpack-manifest-plugin": "1.1.0",
"whatwg-fetch": "2.0.3"
},
"build": {
"appId": "com.rkclark.pullp",
"productName": "Pullp",
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "public"
},
"copyright": "Copyright © 2018 Rick Clark",
"dmg": {
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"target": [
"AppImage"
]
},
"win": {
"target": "NSIS"
}
}
}