-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
140 lines (140 loc) · 4.29 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "cliptor",
"author": "[email protected]",
"description": "Cliptor was invented to have the same functionality available like ablton live matrix sequencer",
"version": "0.0.15",
"main": "./src/app/electron.js",
"homepage": "./",
"private": false,
"license": "MIT",
"repository": "https://github.com/TimSusa/cliptor.git",
"files": [
"build/**/*",
"node_modules/**/*"
],
"build": {
"appId": "com.electron.cliptor",
"asar": true,
"asarUnpack": true,
"releaseInfo": {
"releaseNotesFile": "./CHANGELOG.md"
},
"win": {
"target": "nsis",
"icon": "build/icon.ico",
"publish": [
"github"
]
},
"mac": {
"category": "your.app.category.type",
"icon": "build/icon.icns",
"publish": [
"github"
]
},
"linux": {
"icon": "build/icon.icns",
"target": {
"target": "appimage",
"arch": [
"armv7l"
]
},
"category": "cliptor",
"publish": [
"github"
]
},
"files": [
"build/**/*"
],
"publish": {
"provider": "github",
"publishAutoUpdate": true
}
},
"dependencies": {
"@material-ui/core": "4.11.2",
"@material-ui/styles": "4.11.2",
"@material-ui/icons": "latest",
"@reduxjs/toolkit": "1.5.0",
"electron-is-dev": "1.2.0",
"electron-log": "4.3.1",
"electron-window-state": "5.0.3",
"keycode": "2.2.0",
"lodash": "4.17.20",
"react": "17.0.1",
"react-color": "2.18.1",
"react-dom": "17.0.1",
"react-redux": "7.2.2",
"redux": "4.0.5",
"source-map-explorer": "2.5.1",
"typeface-roboto": "1.1.13",
"uuid": "^8.3.1",
"wavesurfer.js": "^4.3.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"chai-roughly": "1.0.0",
"concurrently": "5.3.0",
"cross-env": "^7.0.3",
"electron": "11.1.1",
"electron-builder": "22.9.1",
"electron-publish": "22.9.1",
"electron-reload": "^1.5.0",
"enzyme": "3.11.0",
"eslint": "7.16.0",
"eslint-config-prettier": "7.1.0",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-prettier": "3.3.0",
"eslint-plugin-react": "7.21.5",
"eslint-plugin-react-hooks": "4.2.0",
"mocha": "8.1.3",
"nodemon": "^2.0.6",
"react-scripts": "4.0.1",
"redux-devtools-extension": "2.13.8",
"redux-mock-store": "1.5.3",
"rimraf": "3.0.2",
"standard-version": "9.0.0",
"vercel": "latest",
"wait-for-localhost": "3.3.0",
"wait-for-localhost-cli": "2.0.0"
},
"scripts": {
"start": "cross-env REACT_APP_IS_WEB_MODE=true react-scripts start",
"dev": "cross-env REACT_APP_IS_WEB_MODE=false yarn run clean && concurrently \"BROWSER=none react-scripts start\" \"wait-for-localhost 3000 && nodemon --exec \"\"electron ./\"\"\"",
"build-ci": "cross-env REACT_APP_IS_WEB_MODE=false yarn clean:dist && react-scripts build && yarn cp-src-electron && yarn build:app-ci",
"build:app": "electron-builder -c.extraMetadata.main=build/app/electron.js --mac",
"build:app-ci": "electron-builder -c.extraMetadata.main=build/app/electron.js -mwl",
"cp-src-electron": "mkdir build/app && cp -r ./src/app/ build/app",
"build": "cross-env REACT_APP_IS_WEB_MODE=true react-scripts build",
"build:doc": "cd cliptor-doc && yarn build && cd ../..",
"lint": "eslint . -c .eslintrc",
"test": "yarn lint && yarn test",
"analyze": "source-map-explorer build/static/js/main.*",
"test-e2e-ci": "concurrently \"BROWSER=none react-scripts start\" \"wait-for-localhost 3000 && CI=true mocha --colors\"",
"postinstall": "yarn clean && electron-builder install-app-deps",
"clean": "yarn clean:dist",
"clean:dist": "rimraf dist && rimraf build && mkdir build",
"pre-release-ci": "release prepatch -t $(git describe --abbrev=0) --show-url --overwrite",
"release-ci": "git push origin $(git describe --abbrev=0)",
"release-me": "standard-version -r $1",
"deploy:cliptor-doc": "cd cliptor-doc/ && yarn && yarn deploy && cd ..",
"deploy": "vercel"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}