-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
90 lines (90 loc) · 3.18 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": "clipcc-desktop",
"productName": "ClipCC",
"description": "ClipCC as a self-contained desktop application",
"author": {
"name": "Clip Team",
"email": "[email protected]"
},
"version": "3.1.4",
"license": "AGPL-3.0",
"scripts": {
"clean": "rimraf ./dist ./static/assets",
"start": "mkdirp ./dist && electron-webpack dev --bail --display-error-details --env.minify=false --no-progress",
"compile": "mkdirp ./dist && electron-webpack --bail --display-error-details --env.minify=false --no-progress",
"fetch": "rimraf ./static/assets/ && mkdirp ./static/assets/ && node ./scripts/fetchMediaLibraryAssets.js",
"build": "yarn run build:dev",
"build:dev": "yarn run compile && yarn run doBuild -- --mode=dev",
"build:dir": "yarn run compile && yarn run doBuild -- --mode=dir",
"build:dist": "cross-env NODE_ENV='production' yarn run compile && yarn run doBuild -- --mode=dist",
"doBuild": "node ./scripts/electron-builder-wrapper.js",
"dist": "yarn run clean && yarn run compile && yarn run fetch && yarn run doBuild -- --mode=dist",
"distDev": "yarn run clean && yarn run compile && yarn run fetch && yarn run doBuild -- --mode=dev",
"test": "yarn run test:lint",
"test:lint": "eslint --cache --color --ext .jsx,.js ."
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Clipteam/clipcc-desktop.git"
},
"dependencies": {
"@electron/remote": "^2.0.4",
"autoprefixer": "9.0.1",
"axios": "^0.25.0",
"broadcast-channel": "^4.11.0",
"clipcc-extension": "^0.2.0",
"css-loader": "1.0.0",
"jszip": "^3.6.0",
"lodash.omit": "^4.5.0",
"mime-types": "^2.1.31",
"postcss-import": "12.0.0",
"postcss-loader": "3.0.0",
"postcss-simple-vars": "5.0.1",
"source-map-support": "^0.5.19"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-object-rest-spread": "^7.9.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-async-to-generator": "^7.8.3",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"async": "^3.2.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-react-intl": "^7.5.7",
"clipcc-gui": "git+https://github.com/Clipteam/clipcc-gui.git#3.1.15",
"copy-webpack-plugin": "^5.1.1",
"cross-env": "^7.0.3",
"electron": "15.3.1",
"electron-builder": "22.13.1",
"electron-devtools-installer": "^3.2.0",
"electron-notarize": "^1.1.1",
"electron-store": "^8.0.1",
"electron-webpack": "^2.8.2",
"eslint": "^7.0.0",
"eslint-config-scratch": "^6.0.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-react": "^7.20.0",
"fs-extra": "^9.0.1",
"intl": "1.2.5",
"lodash.bindall": "^4.4.0",
"lodash.defaultsdeep": "^4.6.1",
"minilog": "^3.1.0",
"minimist": "^1.2.5",
"mkdirp": "^1.0.4",
"nets": "^3.2.0",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-intl": "^3.12.0",
"react-redux": "7.2.6",
"redux": "4.1.2",
"rimraf": "^3.0.2",
"terser-webpack-plugin": "4",
"uuid": "^8.0.0",
"webpack": "^4.43.0"
},
"resolutions": {
"upath": "^1.0.5"
}
}