-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
90 lines (90 loc) · 2.52 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
{
"name": "sobani",
"version": "1.10.0",
"description": "",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/Pawdia/sobani.git"
},
"homepage": "https://github.com/Pawdia/sobani",
"bugs": {
"url": "https://github.com/Pawdia/sobani/issues"
},
"author": {
"name": "Ayaka Neko",
"email": "[email protected]",
"url": "https://neko.ayaka.moe"
},
"contributor": [
{
"name": "Cocoa Kaori",
"email": "[email protected]",
"url": "https://await.moe"
}
],
"keywords": [],
"engines": {
"node": ">=9.0.0",
"npm": ">=5.0.0",
"yarn": ">=1.0.0"
},
"productName": "Sobani",
"build": {
"appId": "moe.ayaka.sobani",
"mac": {
"category": "public.app-category.social-networking"
},
"icon": "./build/icon.png"
},
"browserslist": [
"last 4 versions"
],
"main": "app.js",
"scripts": {
"prod": "cross-env NODE_ENV=production webpack --mode production --config webpack.build.config.js && electron --noDevServer .",
"start": "cross-env NODE_ENV=development webpack-dev-server --hot --host 0.0.0.0 --config=./webpack.dev.config.js --mode development",
"build": "cross-env NODE_ENV=production webpack --config webpack.build.config.js --mode production",
"package": "npm run build",
"postpackage": "electron-packager ./ --out=./builds",
"pack": "electron-builder --dir",
"dist": "electron-builder --publish=never"
},
"postinstall": "electron-builder install-app-deps",
"dependencies": {
"@discordjs/opus": "^0.1.0",
"dns-packet": "5.2.2",
"log4js": "^6.2.0",
"naudiodon": "^2.1.2",
"postcss": "8.2.10",
"prism-media": "^1.2.1",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"babel-loader": "^8.1.0",
"babili-webpack-plugin": "^0.1.2",
"cross-env": "^7.0.2",
"css-loader": "^3.4.2",
"electron": "9.4.0",
"electron-builder": "^22.5.1",
"electron-devtools-installer": "^2.2.4",
"electron-packager": "^14.2.1",
"electron-rebuild": "^1.10.1",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.0.1",
"mini-css-extract-plugin": "^0.9.0",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-nested": "^4.2.1",
"postcss-preset-env": "^6.7.0",
"postcss-pxtorem": "^4.0.1",
"style-loader": "^1.1.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
}
}