-
-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathpackage.json
More file actions
212 lines (212 loc) · 7.74 KB
/
package.json
File metadata and controls
212 lines (212 loc) · 7.74 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
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
{
"name": "gisto",
"version": "1.13.4",
"description": "Cross-platform snippets management desktop application",
"productName": "Gisto",
"main": "main.js",
"scripts": {
"test": "jest --bail",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"clean": "rimraf dist release web",
"lint": "eslint src",
"tslint": "tsc --noEmit && tslint -c tslint.json 'src/**/*.ts' 'src/**/*.tsx'",
"start": "npm run dev",
"start:dev": "cross-env NODE_ENV=development npm run clean && webpack --mode development --watch --progress",
"start:prod": "cross-env NODE_ENV=production npm run clean && webpack --mode production --progress",
"start:web": "cross-env NODE_ENV=development && npm run clean && webpack --config webpack.web.config.js --mode development --watch --progress",
"build:web": "cross-env NODE_ENV=production && npm run clean && webpack --config webpack.web.config.js --mode production --progress",
"electron:dev": "cross-env NODE_ENV=development electron ./dist",
"electron:prod": "cross-env NODE_ENV=production electron ./dist",
"prod": "cross-env NODE_ENV=production concurrently \"npm run start:prod\" \"wait-on dist/main.js && npm run electron:prod\"",
"dev": "cross-env NODE_ENV=development concurrently \"npm run start:dev\" \"wait-on dist/main.js && npm run electron:dev\"",
"preversion": "sh change-log-builder.sh",
"preversion:changelog": "replace \"vPLACEHOLDER\" \"v$npm_package_version\" ./CHANGELOG.md",
"version": "npm run preversion:changelog && git add .",
"postversion": "git push && git push origin --tags",
"release:patch": "npm version patch -m \"v%s \nSee changelog: https://github.com/Gisto/Gisto/blob/master/CHANGELOG.md\"",
"release:minor": "npm version minor -m \"v%s \nSee changelog: https://github.com/Gisto/Gisto/blob/master/CHANGELOG.md\"",
"release:major": "npm version major -m \"v%s \nSee changelog: https://github.com/Gisto/Gisto/blob/master/CHANGELOG.md\"",
"pack:mac": "cross-env NODE_ENV=production npm run start:prod && npx electron-builder build --m --publish=always",
"pack:win:beta": "cross-env NODE_ENV=production npm run start:prod && npx electron-builder build --config electron-builder-prerelease.json -w --x64 --ia32 --publish=always",
"pack:win": "cross-env NODE_ENV=production npm run start:prod && npx electron-builder build -w --x64 --ia32 --publish=always",
"pack:linux": "cross-env NODE_ENV=production npm run start:prod && npx electron-builder build --l --x64 --publish=always",
"pack:all": "cross-env NODE_ENV=production npm run start:prod && npx electron-builder build -mwl --x64 --publish=always",
"pack:beta": "NODE_ENV=production npm run start:prod && npx electron-builder build --config electron-builder-prerelease.json --publish=always",
"pack": "NODE_ENV=production npm run start:prod && npx electron-builder build --config electron-builder.json --publish=always",
"make:release": "git checkout master && git merge next --no-edit && npm run release:patch",
"make:release:beta": "npm version prerelease --preid=beta"
},
"repository": {
"type": "git",
"url": "https://github.com/gisto/gisto.git"
},
"bugs": {
"url": "https://github.com/gisto/gisto/issues"
},
"homepage": "http://www.gistoapp.com/",
"keywords": [
"gisto",
"gist",
"code",
"snippets"
],
"author": {
"name": "Gisto",
"url": "https://www.gistoapp.com"
},
"authors": [
{
"name": "Maayan Glikser",
"url": "http://www.glikm.com"
},
{
"name": "Sasha Khamkov",
"url": "http://www.sanusart.com"
}
],
"license": "MIT",
"readmeFilename": "README.md",
"devDependencies": {
"@babel/cli": "7.5.0",
"@babel/core": "7.5.0",
"@babel/plugin-proposal-class-properties": "7.5.0",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/polyfill": "7.4.4",
"@babel/preset-env": "7.5.0",
"@babel/preset-react": "7.0.0",
"@babel/preset-typescript": "7.3.3",
"@types/jest": "24.0.15",
"@types/lodash": "4.14.135",
"@types/react": "16.8.23",
"@types/react-dom": "16.8.4",
"@types/react-redux": "7.1.1",
"@types/react-router-dom": "4.3.4",
"@types/react-toastify": "4.0.2",
"@types/styled-components": "4.1.16",
"@types/uuid": "3.4.5",
"@typescript-eslint/eslint-plugin": "1.11.0",
"@typescript-eslint/parser": "1.11.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.2",
"babel-jest": "24.8.0",
"babel-loader": "8.0.6",
"babel-plugin-styled-components": "1.10.6",
"babel-plugin-transform-dynamic-import": "2.1.0",
"babel-polyfill": "6.26.0",
"clean-webpack-plugin": "3.0.0",
"concurrently": "4.1.1",
"copy-webpack-plugin": "5.0.3",
"cross-env": "5.2.0",
"css-loader": "2.1.1",
"devtron": "1.4.0",
"electron": "5.0.6",
"electron-builder": "20.44.4",
"electron-debug": "3.0.1",
"electron-devtools-installer": "2.2.4",
"electron-reload": "1.5.0",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "1.14.0",
"enzyme-to-json": "3.3.5",
"eslint": "6.0.1",
"eslint-config-airbnb": "17.1.1",
"eslint-config-prettier": "6.0.0",
"eslint-import-resolver-webpack": "0.11.1",
"eslint-plugin-import": "2.18.0",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "3.1.0",
"eslint-plugin-react": "7.14.2",
"file-loader": "4.0.0",
"html-webpack-plugin": "3.2.0",
"husky": "3.0.0",
"identity-obj-proxy": "3.0.0",
"jest": "24.8.0",
"jest-styled-components": "6.3.3",
"lint-staged": "9.0.2",
"mimic": "2.0.9",
"monaco-editor-webpack-plugin": "1.7.0",
"nock": "10.0.6",
"papaparse": "5.3.0",
"prettier": "1.18.2",
"prop-types": "15.7.2",
"react-test-renderer": "16.8.6",
"redux-freeze": "0.1.7",
"redux-logger": "3.0.6",
"replace": "1.2.0",
"request": "2.88.0",
"rimraf": "2.6.3",
"sinon": "7.3.2",
"size-plugin": "1.2.0",
"style-loader": "0.23.1",
"styled-components": "4.3.2",
"ts-jest": "24.0.2",
"typescript": "3.5.2",
"webpack": "4.35.3",
"webpack-bundle-analyzer": "3.9.0",
"webpack-cli": "3.3.5",
"webpack-dev-middleware": "3.7.0",
"webpack-merge": "4.2.1",
"workbox-webpack-plugin": "4.3.1"
},
"dependencies": {
"@sentry/electron": "0.17.1",
"asciidoctor.js": "1.5.9",
"connected-react-router": "6.5.0",
"core-js": "3.1.4",
"dotenv": "8.0.0",
"electron-google-analytics": "0.1.0",
"electron-log": "3.0.6",
"electron-settings": "3.2.0",
"electron-updater": "4.0.14",
"github-markdown-css": "3.0.1",
"highlight.js": "10.4.1",
"history": "4.9.0",
"katex": "0.10.2",
"leaflet": "1.5.1",
"lodash": "4.17.20",
"marked": "0.6.3",
"monaco-ace-tokenizer": "0.1.1",
"monaco-themes": "0.3.3",
"mousetrap": "1.6.3",
"normalize.css": "8.0.1",
"polished": "3.4.1",
"raven-js": "3.27.2",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-dropdown-select": "3.1.0",
"react-monaco-editor": "0.26.2",
"react-redux": "7.1.0",
"react-router": "5.0.1",
"react-router-dom": "5.0.1",
"react-scrollpad": "1.0.1",
"react-toastify": "5.3.1",
"redux": "4.0.1",
"reselect": "4.0.0",
"semver": "6.2.0",
"superagent": "5.1.0",
"swagger-ui-react": "3.52.5",
"tslint": "5.18.0",
"uuid": "3.3.2",
"wait-on": "3.2.0",
"yargs": "13.2.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,json,css,scss,ts,tsx}": [
"prettier --single-quote --write",
"eslint src --fix",
"npm run lint",
"jest --bail --findRelatedTests",
"git add"
]
},
"engines": {
"node": ">=8.12.0",
"npm": ">=6.4.1",
"yarn": ">=1.1.0"
}
}