forked from electron/fiddle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
132 lines (132 loc) · 4.18 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
{
"name": "electron-fiddle",
"productName": "Electron Fiddle",
"version": "0.28.1",
"description": "The easiest way to get started with Electron",
"repository": "https://github.com/electron/fiddle",
"main": "./dist/src/main/main",
"scripts": {
"contributors": "node ./tools/contributors.js",
"lint:style": "stylelint \"./src/less/*.less\" --fix",
"lint:ts": "eslint \"./**/*.{ts,tsx}\" --fix",
"lint:templates": "standard \"static/**/*.js\" --fix",
"lint:links": "node ./tools/check-links.js",
"lint": "npm-run-all \"lint:*\"",
"make": "electron-forge make",
"package": "electron-forge package",
"parcel:build": "node ./tools/parcel-build.js",
"parcel:watch": "node ./tools/parcel-watch.js",
"publish": "electron-forge publish",
"start": "rimraf ./dist && electron-forge start --",
"test": "jest --config=jest.json",
"test:ci": "jest --config=jest.json --coverage --runInBand",
"test:report": "jest --config=jest.json --json --bail=false --outputFile=report.json | true",
"tsc": "tsc --noEmit -p .",
"electron-releases": "node --unhandled-rejections=strict ./tools/fetch-releases.js",
"postinstall": "husky install"
},
"keywords": [
"Electron",
"Fiddle",
"Tutorial"
],
"author": "Felix Rieseberg <[email protected]>",
"license": "MIT",
"config": {
"forge": "./forge.config.js"
},
"dependencies": {
"@blueprintjs/core": "^3.36.0",
"@blueprintjs/popover2": "^0.12.2",
"@blueprintjs/select": "^3.15.0",
"@electron/get": "^1.14.1",
"@octokit/rest": "^16.43.1",
"@sentry/electron": "^2.5.3",
"@types/getos": "^3.0.1",
"algoliasearch": "^4.12.0",
"classnames": "^2.2.6",
"commander": "^7.1.0",
"electron-default-menu": "^1.0.2",
"electron-devtools-installer": "^3.1.1",
"electron-squirrel-startup": "^1.0.0",
"extract-zip": "^2.0.1",
"fs-extra": "^9.1.0",
"getos": "^3.2.1",
"mobx": "^5.15.7",
"mobx-react": "^6.3.1",
"monaco-editor": "^0.21.3",
"monaco-loader": "1.0.0",
"namor": "^2.0.2",
"node-watch": "^0.7.3",
"p-debounce": "^2.0.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-mosaic-component": "^4.1.1",
"semver": "^7.3.4",
"shell-env": "^3.0.1",
"tmp": "0.2.1",
"tslib": "^2.1.0",
"update-electron-app": "^2.0.1"
},
"devDependencies": {
"@babel/core": "^7.13.8",
"@electron-forge/cli": "^6.0.0-beta.59",
"@electron-forge/maker-deb": "^6.0.0-beta.59",
"@electron-forge/maker-rpm": "^6.0.0-beta.59",
"@electron-forge/maker-squirrel": "^6.0.0-beta.59",
"@electron-forge/maker-zip": "^6.0.0-beta.59",
"@electron-forge/publisher-github": "^6.0.0-beta.59",
"@octokit/action": "^2.0.0",
"@types/classnames": "^2.2.11",
"@types/enzyme": "^3.10.8",
"@types/fs-extra": "^9.0.7",
"@types/jest": "^26.0.20",
"@types/json-stable-stringify": "^1.0.32",
"@types/log-symbols": "^3.0.0",
"@types/node": "^14.16.0",
"@types/react": "^16.14.0",
"@types/react-dom": "^16.9.11",
"@types/semver": "^7.3.4",
"@types/tmp": "0.2.0",
"@types/valid-url": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"cross-fetch": "^3.1.0",
"electron": "17.4.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"enzyme-to-json": "^3.6.1",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"fetch-mock-jest": "^1.5.1",
"husky": "^5.1.1",
"jest": "^26.6.3",
"json-stable-stringify": "^1.0.1",
"less": "^4.1.1",
"lint-staged": "^10.5.4",
"log-symbols": "^4.0.0",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.4",
"prettier": "^2.2.1",
"react-test-renderer": "^17.0.1",
"rimraf": "^3.0.2",
"standard": "^16.0.3",
"stylelint": "^13.11.0",
"stylelint-config-standard": "^20.0.0",
"ts-jest": "^26.5.2",
"typescript": "^4.2.2"
},
"lint-staged": {
"./**/*.{js,ts,tsx}": [
"eslint --fix"
],
"./static/**/*.js": [
"standard --fix"
],
"./src/less/*.less": [
"stylelint --fix"
]
}
}