This repository has been archived by the owner on Oct 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.28 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
{
"name": "bertdotbill",
"version": "1.0.0",
"description": "Bert's Interactive Lesson Loader (BILL)",
"source": "src/index.html",
"browserslist": "> 0.25%",
"homepage": "https://berttejeda.github.io/bert.bill/",
"scripts": {
"build": "run-script-os",
"build:installer": "bash -c './setup.sh build release --no-bump'",
"build:macos": "yarn clean:default && yarn compile:ui:prod && python build-macos.py py2app",
"build:windows": "yarn clean:windows && yarn compile:ui:prod",
"build:linux": "yarn clean:default && yarn compile:ui:prod",
"clean": "run-script-os",
"clean:default": "yarn rimraf dist bill.gui build .parcel-cache 2>/dev/null;",
"clean:windows": "if exist dist yarn rimraf dist & if exist build yarn rimraf build & if exist bill.gui yarn rimraf bill.gui & if exist .parcel-cache yarn rimraf .parcel-cache",
"compile:ui:dev": "yarn parcel build src/index.html --no-optimize --no-scope-hoist --dist-dir bill.gui",
"compile:ui:prod": "yarn parcel build src/index.html --no-scope-hoist --dist-dir bill.gui --public-url ./",
"deploy": "run-script-os",
"deploy:darwin": "yarn rimraf node_modules/.cache/gh-pages && yarn gh-pages -d bill.gui",
"deploy:linux": "yarn rimraf node_modules/.cache/gh-pages && yarn gh-pages -d bill.gui",
"deploy:windows": "yarn rimraf node_modules/.cache/gh-pages && yarn gh-pages -d bill.gui",
"start:api": "python bertdotbill/app.py --debug --api-only -aio",
"start:dev:ui": "yarn parcel src/index.html",
"start:prod": "bill",
"predeploy": "yarn compile:ui:prod"
},
"targets": {
"modern": {
"includeNodeModules": true,
"engines": {
"browsers": "Chrome 80"
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/berttejeda/bert.bill.git"
},
"keywords": [
"flask",
"javascript",
"parcel",
"python",
"react"
],
"author": "Bert Tejeda",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/berttejeda/bert.bill/issues"
},
"dependencies": {
"@parcel/compressor-brotli": "^2.6.0",
"@parcel/compressor-gzip": "^2.6.0",
"@parcel/transformer-sass": "^2.6.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"axios": "^0.21.1",
"bootstrap": "^5.0.2",
"buffer": "^6.0.3",
"command": "^0.0.5",
"dotenv": "^16.0.1",
"dotenv-expand": "^8.0.3",
"gh-pages": "^4.0.0",
"iframe-resizer-react": "^1.1.0",
"lodash": "^4.17.21",
"react": "^17.0.0",
"react-bootstrap": "^1.6.1",
"react-dom": "^17.0.0",
"react-hot-loader": "^4.13.0",
"react-loading": "^2.0.3",
"react-scripts": "4.0.0",
"react-sliding-pane": "^7.0.0",
"react-use-error-boundary": "^2.0.1",
"react-use-websocket": "^2.9.1",
"rsuite": "^5.2.1",
"socket.io": "^4.1.3",
"socket.io-client": "^4.1.3",
"tocbot": "^4.13.5",
"xterm": "^4.5.0",
"xterm-addon-attach": "^0.6.0",
"xterm-addon-fit": "^0.5.0",
"xterm-addon-web-links": "^0.4.0"
},
"devDependencies": {
"@parcel/config-default": "^2.6.0",
"@parcel/transformer-typescript-tsc": "^2.6.0",
"buffer": "^6.0.3",
"http-proxy-middleware": "^2.0.6",
"parcel": "^2.6.0",
"rimraf": "^3.0.2",
"run-script-os": "1.0.7",
"sass": "1.25.0",
"typescript": "^3.7.5"
}
}