-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.12 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
{
"name": "code-goes-here",
"productName": "code-goes-here",
"version": "0.0.1",
"description": "Code Goes Here",
"keywords": [
"code",
"compile",
"leet"
],
"homepage": "https://github.com/1nv1n/code-goes-here#readme",
"bugs": {
"url": "https://github.com/1nv1n/code-goes-here"
},
"repository": {
"type": "git",
"url": "https://github.com/1nv1n/code-goes-here.git"
},
"author": {
"name": "1nv1n",
"url": "https://github.com/1nv1n"
},
"contributors": [],
"main": "src/app.js",
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"lint": "eslint src --color"
},
"license": "Apache-2.0",
"config": {
"forge": {
"make_targets": {
"win32": [
"squirrel"
],
"darwin": [
"zip"
],
"linux": [
"deb",
"rpm"
]
},
"electronPackagerConfig": {
"packageManager": "yarn"
},
"electronWinstallerConfig": {
"name": "code_goes_here"
},
"electronInstallerDebian": {},
"electronInstallerRedhat": {},
"github_repository": {
"owner": "",
"name": ""
},
"windowsStoreConfig": {
"packageName": "",
"name": "codegoeshere"
}
}
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.9.0",
"bulma": "^0.7.5",
"electron-compile": "^6.4.4",
"electron-settings": "^3.2.0",
"electron-squirrel-startup": "^1.0.0",
"github-api": "^3.2.2",
"leetcode-cli": "^2.6.1",
"monaco-editor": "^0.17.1",
"request": "^2.88.0",
"request-promise": "^4.2.4"
},
"devDependencies": {
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"electron-forge": "^5.2.4",
"electron-prebuilt-compile": "4.0.0",
"eslint": "^6.0.1",
"eslint-config-airbnb": "^17",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.2"
}
}