-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
111 lines (111 loc) · 3.62 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
{
"name": "clippy",
"productName": "clippy",
"version": "2.1.1",
"description": "Clippy is a minimal clipboard history log made with Electron.js!",
"main": "src/index.js",
"type": "commonjs",
"scripts": {
"dev": "npm-run-all -p dev:render dev:forge",
"dev:forge": "electron-forge start",
"dev:render": "webpack --config ./webpack.renderer.config.js --watch --mode development",
"package": "npm-run-all -s build && electron-forge package",
"prepackage": "npm-run-all -s lint pretty test build",
"build": "webpack --config ./webpack.renderer.config.js --mode production",
"make": "electron-forge make",
"premake": "npm-run-all -s lint pretty test build",
"publish": "electron-forge publish",
"commit": "cz",
"precommit": "npm-run-all -s lint pretty test",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"lint": "eslint --ext .js,.ts ./src --config .eslintrc.yml --fix",
"pretty": "prettier --write \"./**/*.{js,jsx,json}\"",
"test": "jest --colors --expand --logHeapUsage --config jest.config.js --verbose --coverage --passWithNoTests"
},
"keywords": [],
"author": {
"name": "Nabil",
"email": "nabil.tharwat@outlook.com"
},
"build": {
"appId": "com.kl13nt.clippy",
"productName": "Clippy",
"mac": {
"category": "public.app-category.lifestyle"
},
"dmg": {
"icon": false
},
"linux": {
"target": [
"AppImage"
],
"category": "Utilities"
}
},
"license": "GPL-3.0-or-later",
"config": {
"forge": "./forge.config.js",
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "npm run precommit && commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"electron-is-dev": "^1.2.0",
"electron-squirrel-startup": "^1.0.0",
"htm": "^3.0.4",
"linkifyjs": "^2.1.9",
"nanoid": "^3.1.20",
"preact": "^10.5.12",
"react-markdown": "^5.0.3",
"react-syntax-highlighter": "^15.4.3"
},
"devDependencies": {
"@axe-core/react": "^4.1.1",
"@babel/cli": "^7.0.0",
"@babel/core": "^7.12.13",
"@babel/eslint-parser": "^7.12.13",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/plugin-proposal-pipeline-operator": "^7.12.13",
"@babel/plugin-transform-runtime": "^7.12.15",
"@babel/preset-env": "^7.12.13",
"@babel/preset-react": "^7.12.13",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@electron-forge/cli": "^6.0.0-beta.54",
"@electron-forge/maker-deb": "^6.0.0-beta.54",
"@electron-forge/maker-rpm": "^6.0.0-beta.54",
"@electron-forge/maker-squirrel": "^6.0.0-beta.54",
"@electron-forge/maker-zip": "^6.0.0-beta.54",
"@electron-forge/plugin-electronegativity": "^6.0.0-beta.54",
"@electron-forge/publisher-github": "^6.0.0-beta.54",
"all-contributors-cli": "^6.19.0",
"babel-jest": "^23.4.2",
"babel-loader": "^8.2.2",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "3.3.0",
"electron": "11.2.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.22.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"webpack": "^5.21.2",
"webpack-cli": "^4.5.0"
}
}