-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.98 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
{
"name": "paley",
"version": "0.1.0-alpha",
"description": "A simple color picker for Wayland.",
"main": "./dist/main.js",
"homepage": "./",
"repository": "git@github.com:hiukky/paley.git",
"author": {
"name": "Romullo",
"email": "developermarsh@gmail.com",
"url": "https://hiukky.com"
},
"license": "MIT",
"build": {
"appId": "com.hiukky.paley",
"productName": "Paley",
"copyright": "Copyright © 2020 Romullo",
"asar": true,
"directories": {
"buildResources": "dist",
"output": "out"
},
"files": [
"dist/**/*",
"node_modules/**/*"
]
},
"scripts": {
"clean": "rimraf dist build out *.spec",
"dev": "concurrently \"yarn dev:react\" \"yarn dev:electron\"",
"dev:electron": "cross-env NODE_ENV=development webpack --config webpack/electron.config.js --mode development && electron .",
"dev:react": "cross-env NODE_ENV=development webpack-dev-server --config webpack/react.config.js --mode development",
"build": "yarn clean && yarn build:react && yarn build:electron",
"build:electron": "cross-env NODE_ENV=production webpack --config webpack/electron.config.js --mode production",
"build:react": "cross-env NODE_ENV=production webpack --config webpack/react.config.js --mode production",
"start": "electron .",
"preelectron-build": "yarn build",
"electron-build": "electron-builder",
"postinstall": "electron-builder install-app-deps",
"format": "prettier --write \"./**/*.{js,ts,tsx}\""
},
"dependencies": {
"@babel/runtime": "^7.11.2",
"@ctrl/tinycolor": "^3.1.4",
"@minily/components": "^0.1.0-alpha.1",
"@minily/tools": "^0.1.0-alpha.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"remixicon": "^2.5.0",
"styled-components": "^5.2.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"@types/styled-components": "^5.1.3",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"babel-loader": "^8.1.0",
"concurrently": "^5.3.0",
"cross-env": "^7.0.2",
"css-loader": "^4.2.2",
"electron": "^10.1.1",
"electron-builder": "^22.8.0",
"eslint": "^7.8.1",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"file-loader": "^6.1.0",
"html-loader": "^1.3.0",
"html-webpack-plugin": "^4.4.1",
"husky": "^4.2.5",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"style-loader": "^1.2.1",
"typescript": "^4.0.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}