-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 2.42 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
{
"dependencies": {
"@hydrophobefireman/ui-lib": "^1.5.3",
"@randy.tarampi/lwip": "^3.0.3",
"statedrive": "^0.0.7"
},
"name": "ketu",
"version": "1.0.0",
"description": "Ketu is an awesome image steganography tool built purely on NodeJS.",
"main": "application/main.js",
"homepage": "./",
"scripts": {
"start": "electron .",
"electron-dev": "set ELECTRON_START_URL=http://localhost:4200&&nodemon --watch application/ --exec electron .",
"electron-build": "yarn build",
"rebuild": "electron-rebuild -f -w @randy.tarampi/lwip",
"frontend-start": "yarn watch:css && set NODE_ENV=development&&webpack-dev-server",
"frontend-build": "yarn frontend-prebuild && yarn build:css && yarn build:bundle",
"frontend-prebuild": "rm -rf ./dist/",
"build:bundle": "set NODE_ENV=production&&webpack --config ./webpack.config.js",
"build:css": "set NODE_ENV=production&&postcss frontend/src/assets/tailwind.css -o frontend/src/assets/main.css",
"watch:css": "postcss frontend/src/assets/tailwind.css -o frontend/src/assets/main.css"
},
"repository": "[email protected]:utkarshdubey/ketu.git",
"author": "Utkarsh Dubey <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-react-jsx": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-modules": "^0.1.4",
"@babel/runtime-corejs3": "^7.11.2",
"autoprefixer": "9.8.6",
"babel-loader": "^8.1.0",
"core-js": "^3.6.5",
"css-loader": "^4.3.0",
"cssnano": "^4.1.10",
"electron": "^10.1.2",
"electron-builder": "^22.8.1",
"electron-rebuild": "^2.2.0",
"file-loader": "^6.1.0",
"html-inline-css-webpack-plugin": "^1.8.1",
"html-webpack-plugin": "^4.4.1",
"mini-css-extract-plugin": "^0.11.2",
"nodemon": "^2.0.4",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"postcss-cli": "7.1.2",
"postcss-loader": "^4.0.1",
"prettier": "^2.1.2",
"style-ext-html-webpack-plugin": "^4.1.2",
"tailwindcss": "^1.8.10",
"terser": "^5.3.1",
"terser-webpack-plugin": "^4.2.0",
"url-loader": "^4.1.0",
"webpack": "^5.0.0-beta.30",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-module-nomodule-plugin": "0.4.0"
}
}