-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.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
{
"name": "sap-cpq-tools",
"description": "An application with various SAP CPQ tools!",
"author": {
"name": "Eric Hoftiezer",
"email": "[email protected]"
},
"version": "v1.2.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/LunaUrsa/SAP-CPQ-CI.git"
},
"bugs": "https://github.com/LunaUrsa/SAP-CPQ-CI/issues",
"private": true,
"contributors": [
{
"name": "Lawrence Clark",
"email": "[email protected]",
"part": "Consultation on many aspects"
},
{
"name": "Jamie Vo",
"email": "[email protected]",
"part": "Most of the UI"
},
{
"name": "Corey Shewell",
"email": "[email protected]",
"part": "Code Parser"
}
],
"main": ".\\gui\\main.js",
"scripts": {
"start": "electron .",
"postinstall1": "yarn run installPython && yarn run upgradePipGlobal && yarn run installVENV && yarn run createVenv && yarn run upgradePipVenv && yarn run installPythonModules && yarn run installVSCodeModule && yarn run endDevComment",
" ": "",
"installPython": "choco install python -y",
"upgradePipGlobal": "python -m pip install --upgrade pip",
"installVENV": "pip install virtualenv",
"createVenv": "py -m venv env --copies",
"upgradePipVenv": ".\\env\\Scripts\\python -m pip install --upgrade pip",
"installPythonModules": ".\\env\\Scripts\\pip install -r engine/requirements.txt",
"installVSCodeModule": "yarn",
"activateVenv - You must copy/paste this into the console": ".\\env\\Scripts\\activate",
"endDevComment": "echo Dev setup complete, activate the python venv in your IDE: .\\env\\Scripts\\activate",
" ": "",
"devBuild": "yarn run installPyinstaller && yarn run buildPython && yarn run rmBuild && yarn run buildElectron && yarn run rmDist && yarn run endBuildComment",
"installPyinstaller": "pip install pyinstaller",
"buildPython": "yarn run buildParser",
"buildParser": "pyinstaller engine/parser.py -y && del parser.spec",
"rmBuild": "rmdir build /s /q",
"buildElectron": "electron-builder --publish never",
"rmDist": "rmdir dist /s /q",
"publishElectron": "electron-builder --publish always",
"endBuildComment": "echo Your program has been built! Check the Output folder!"
},
"devDependencies": {
"devtron": "^1.4.0",
"electron": "^8.2.3",
"electron-builder": "^22.6.0",
"eslint": "^7.0.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^6.2.2"
},
"dependencies": {
"animejs": "^3.1.0",
"bootstrap": "^4.4.1",
"chokidar": "^3.4.0",
"electron-debug": "^3.0.1",
"electron-is-dev": "^1.2.0",
"electron-log": "^4.1.2",
"electron-settings": "^3.2.0",
"electron-updater": "^4.3.1",
"electron-util": "^0.14.1",
"github-create-issue": "^2.0.0",
"jquery": "^3.4.1",
"menu": "^0.2.5",
"popper.js": "^1.16.1",
"read-last-lines": "^1.7.2",
"request": "^2.88.2",
"slugify": "^1.4.4",
"sweetalert2": "^9.17.0"
},
"build": {
"appId": "sap-cpq-tools",
"productName": "SAP CPQ Tools",
"asar": false,
"directories": {
"output": "Output"
},
"files": [
"!.github/*",
"!env/*",
"!Output/*",
"!build/*",
"!.vscode/*",
"!/.eslint.js",
"!.gitignore",
"!README.md",
"!.eslintrc.js",
"!yarn-error.log",
"!dev-app-update.yml"
]
}
}