forked from Syn-Tax/memento
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.17 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
{
"name": "Memento",
"version": "1.6.15",
"author": {
"name": "Oscar Morris",
"email": "[email protected]"
},
"homepage": "./",
"main": "public/electron.js",
"private": true,
"dependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.58",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^12.6.3",
"babel-loader": "8.1.0",
"concurrently": "^5.3.0",
"decompress-zip": "^0.3.3",
"electron-debug": "^3.2.0",
"electron-is-dev": "^2.0.0",
"electron-window-state": "^5.0.3",
"fs-extra": "^10.0.0",
"jimp": "^0.16.1",
"query-string": "^7.0.0",
"react": "^17.0.1",
"react-dnd": "^14.0.2",
"react-dnd-html5-backend": "^14.0.0",
"react-dom": "^17.0.1",
"react-keyboard": "^1.0.8",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.2",
"react-spring": "^9.0.0",
"wait-on": "^5.2.1",
"web-vitals": "^1.1.0",
"zip-dir": "^2.0.0"
},
"scripts": {
"build": "react-scripts build",
"start": "react-scripts start",
"package": "electron-builder build --publish never",
"electron-dev": "concurrently \"BROWSER=none npm start\" \"wait-on http://localhost:3000 && electron .\"",
"electron-dev-win": "concurrently \"set BROWSER=none && npm start\" \"wait-on http://localhost:3000 && electron .\"",
"start-server": "set BROWSER=none && npm start",
"start-electron": "electron ."
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"electron": "^11.2.3",
"electron-builder": "^22.11.7",
"electron-prebuilt-compile": "8.2.0",
"react-app-rewired": "^2.1.8"
},
"build": {
"files": [
"**/*"
],
"linux": {
"target": "deb"
}
}
}