-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.38 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
{
"name": "mobber",
"version": "0.2.2",
"private": false,
"homepage": "./",
"license": "MIT",
"main": "electron/main.js",
"scripts": {
"build": "yarn run build-react && yarn run build-electron",
"build-react": "react-scripts build",
"build-electron": "run-script-os",
"build-electron:darwin:linux": "mkdir build/src && cp -r electron/. build/electron",
"build-electron:win32": "mkdir build\\src && xcopy electron build\\electron\\",
"package": "yarn run build && electron-builder build -c.extraMetadata.main=build/electron/main.js --publish never",
"start": "cross-env BROWSER=none react-scripts start",
"start-electron": "cross-env ELECTRON_START_URL=http://localhost:3000 electron .",
"test": "react-scripts test --env=jest-environment-jsdom-sixteen",
"cypress:open": "cypress open"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"eslintConfig": {
"extends": "react-app"
},
"dependencies": {
"@material-ui/core": "^4.11.0",
"@xstate/react": "^0.8.1",
"electron-store": "^6.0.0",
"mdi-material-ui": "^6.17.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts": "3.4.1",
"typeface-roboto": "^0.0.75",
"typeface-roboto-mono": "^0.0.75",
"xstate": "^4.11.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.2",
"@testing-library/react": "^10.4.7",
"@testing-library/user-event": "^12.0.17",
"@types/jest": "^24.0.0",
"@types/node": "^12.0.0",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"cross-env": "^7.0.2",
"cypress": "^4.12.1",
"electron": "^9.1.1",
"electron-builder": "^22.7.0",
"eslint": "^6.6.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-cypress": "^2.11.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.0",
"jest-environment-jsdom-sixteen": "^1.0.3",
"run-script-os": "^1.1.1",
"typescript": "~3.9.7"
},
"build": {
"appId": "com.melkstam.mobber",
"productName": "Mobber",
"files": [
"build/**/*",
"node_modules/**/*"
]
}
}