This repository has been archived by the owner on Oct 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 loc) · 1.73 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
{
"name": "sprint",
"author": "Harshal Nandigramwar <[email protected]>",
"description": "A tailored code editor for competitive programmers",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"electron:build": "vue-cli-service electron:build",
"electron:serve": "vue-cli-service electron:serve",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps",
"electron:generate-icons": "electron-icon-builder --input=./public/icon.png --output=build --flatten"
},
"main": "background.js",
"dependencies": {
"core-js": "^3.4.4",
"electron-updater": "^4.2.0",
"express": "^4.17.1",
"monaco-editor": "^0.19.3",
"monaco-editor-webpack-plugin": "^1.8.2",
"node-pty": "^0.9.0",
"vue": "^2.6.10",
"vue-router": "^3.1.3",
"vue-shortkey": "^3.1.7",
"vuetify": "^2.1.0",
"vuex": "^3.1.2",
"xterm": "^4.3.0",
"xterm-addon-fit": "^0.3.0",
"xterm-addon-web-links": "^0.2.1"
},
"devDependencies": {
"@mdi/js": "^4.8.95",
"@vue/cli-plugin-babel": "^4.1.0",
"@vue/cli-plugin-eslint": "^4.1.0",
"@vue/cli-plugin-router": "^4.1.0",
"@vue/cli-plugin-vuex": "^4.1.0",
"@vue/cli-service": "^4.1.0",
"babel-eslint": "^10.0.3",
"electron": "^6.0.0",
"electron-icon-builder": "^1.0.2",
"electron-rebuild": "^1.8.8",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"sass": "^1.19.0",
"sass-loader": "^8.0.0",
"vue-cli-plugin-electron-builder": "^1.4.4",
"vue-cli-plugin-vuetify": "^2.0.3",
"vue-template-compiler": "^2.6.10",
"vuetify-loader": "^1.3.0"
}
}