forked from chaiNNer-org/chaiNNer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
144 lines (144 loc) · 5.39 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
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "chainner",
"productName": "chaiNNer",
"version": "0.17.0",
"description": "A flowchart based image processing GUI",
"main": ".webpack/main",
"scripts": {
"start": "electron-forge start",
"dev": "concurrently \"cd backend/src && nodemon ./run.py 8000\" \"electron-forge start -- --no-backend\"",
"debug": "concurrently \"npm run debug:py\" \"electron-forge start -- --no-backend\"",
"debug:py": "cd backend/src && nodemon --exec \"python -m debugpy --listen 5678\" ./run.py 8000",
"package": "cross-env NODE_ENV=production electron-forge package",
"make": "cross-env NODE_ENV=production electron-forge make",
"make-linux-zip": "cross-env NODE_ENV=production electron-forge make --targets @electron-forge/maker-zip --platform linux",
"make-win-zip": "cross-env NODE_ENV=production electron-forge make --targets @electron-forge/maker-zip --platform win32",
"make-mac-zip": "cross-env NODE_ENV=production electron-forge make --targets @electron-forge/maker-zip --platform darwin",
"publish": "cross-env NODE_ENV=production electron-forge publish",
"lint": "npm run lint-js && npm run lint-py",
"lint-js": "eslint . --ext \".js,.jsx,.ts,.tsx\" && stylelint src/**/*.scss",
"lint-js-ci": "eslint . --ext \".js,.jsx,.ts,.tsx\" --max-warnings 0 && stylelint src/**/*.scss",
"lint-py": "black --check ./backend",
"lint-fix": "eslint . --fix --ext \".js,.jsx,.ts,.tsx\" && stylelint src/**/*.scss --fix && black ./backend",
"test-js": "jest",
"test-py": "pytest ./backend/tests/",
"test": "npm run test-js && npm run test-py"
},
"keywords": [],
"author": {
"name": "Joey Ballentine",
"email": "[email protected]"
},
"engines": {
"npm": ">=7.0.0"
},
"license": "GPLv3",
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@babel/preset-typescript": "^7.17.12",
"@electron-forge/cli": "^6.0.1",
"@electron-forge/maker-deb": "^6.0.1",
"@electron-forge/maker-dmg": "^6.0.1",
"@electron-forge/maker-flatpak": "^6.0.1",
"@electron-forge/maker-rpm": "^6.0.1",
"@electron-forge/maker-squirrel": "^6.0.1",
"@electron-forge/maker-zip": "^6.0.1",
"@electron-forge/plugin-webpack": "^6.0.1",
"@electron-forge/publisher-github": "^6.0.1",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"@types/bezier-js": "^4.1.0",
"@types/d3": "^7.4.0",
"@types/decompress": "^4.2.4",
"@types/eventsource": "^1.1.10",
"@types/jest": "^28.1.0",
"@types/node-localstorage": "^1.3.0",
"@types/os-utils": "^0.0.1",
"@types/react-dom": "^18.0.5",
"@types/semver": "^7.3.9",
"@types/uuid": "^8.3.4",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"@vercel/webpack-asset-relocator-loader": "^1.7.2",
"babel-loader": "^8.2.5",
"babel-plugin-i18next-extract": "^0.9.0",
"concurrently": "^7.2.1",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"electron": "^21.2.3",
"electron-installer-common": "^0.10.3",
"eslint": "^8.16.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-prefer-arrow-functions": "^3.1.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-memo": "^0.0.3",
"eslint-plugin-unused-imports": "^2.0.0",
"file-loader": "^6.2.0",
"image-webpack-loader": "^8.1.0",
"jest": "^28.1.0",
"node-loader": "^2.0.0",
"nodemon": "^2.0.16",
"prettier": "^2.6.2",
"react-refresh": "^0.13.0",
"sass": "^1.54.4",
"sass-loader": "^13.0.2",
"semver-regex": ">=4.0.3",
"style-loader": "^3.3.1",
"stylelint": "^14.13.0",
"stylelint-config-prettier-scss": "^0.0.1",
"stylelint-config-standard-scss": "^5.0.0",
"stylelint-prettier": "^2.0.0",
"ts-jest": "^28.0.3",
"ts-node": "^10.8.0",
"typescript": "^4.7.2"
},
"dependencies": {
"@babel/plugin-transform-react-jsx": "^7.17.12",
"@chainner/navi": "^0.3.0",
"@chakra-ui/icons": "^2.0.11",
"@chakra-ui/react": "^2.3.5",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@fontsource/open-sans": "^4.5.10",
"@react-nano/use-event-source": "^0.12.0",
"adm-zip": "^0.5.10",
"bezier-js": "^6.1.0",
"cross-fetch": "^3.1.5",
"decompress": "^4.2.1",
"electron-log": "^4.4.8",
"electron-squirrel-startup": "^1.0.0",
"eventsource": "^2.0.2",
"fast-deep-equal": "^3.1.3",
"framer-motion": "^6.3.6",
"html-to-image": "^1.10.8",
"i18next": "^22.0.5",
"node-localstorage": "^2.2.1",
"nodejs-file-downloader": "^4.9.3",
"os-utils": "^0.0.14",
"portfinder": "^1.0.32",
"re-resizable": "^6.9.9",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-hotkeys-hook": "^3.4.6",
"react-i18next": "^12.0.0",
"react-icons": "^4.7.1",
"react-markdown": "^8.0.3",
"reactflow": "^11.2.0",
"rregex": "^1.5.1",
"scheduler": "^0.22.0",
"semver": "^7.3.7",
"systeminformation": "^5.11.16",
"use-context-selector": "^1.4.0",
"use-debounce": "^8.0.1",
"use-http": "^1.0.26",
"uuid": "^8.3.2",
"yargs": "^17.5.1"
}
}