-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.5 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
{
"name": "AlfameRepresentativeStatusUi",
"version": "0.0.1",
"private": true,
"scripts": {
"dev:web": "react-scripts start",
"prod:web": "react-scripts build",
"dev:ele": "concurrently \"BROWSER=none yarn dev:web\" \"wait-on http://localhost:3000 && yarn electron\"",
"prod:ele": "yarn prod:web && electron builder",
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest --silent",
"electron": "electron .",
"dev:ios": "react-native run-ios",
"dev:android": "react-native run-android",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"bundle": "react-native bundle --entry-file index.js --platform ios --dev false --bundle-output ios/main.jsbundle --assets-dest ios/assets"
},
"dependencies": {
"axios": "^0.18.0",
"electron-is-dev": "^1.0.1",
"react": "16.8.3",
"react-art": "^16.8.4",
"react-dom": "^16.8.4",
"react-native": "0.59.1",
"react-native-cli": "^2.0.1",
"react-native-web": "^0.11.1",
"react-router": "^5.0.0",
"react-router-dom": "^5.0.0",
"react-router-native": "^5.0.0",
"react-scripts": "^2.1.8"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/runtime": "^7.3.4",
"concurrently": "^4.1.0",
"electron": "^4.1.4",
"electron-builder": "^20.39.0",
"electron-packager": "^13.1.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-flowtype": "^3.4.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"flow-bin": "^0.92.0",
"jest-canvas-mock": "^2.0.0-beta.1",
"metro-react-native-babel-preset": "^0.53.1",
"prettier": "^1.16.4",
"react-test-renderer": "16.8.3",
"react-testing-library": "^6.0.1",
"typescript": "^3.4.3",
"wait-on": "^3.2.0"
},
"jest": {
"setupFiles": [
"jest-canvas-mock"
],
"moduleFileExtensions": [
"web.js",
"js",
"jsx"
],
"preset": "react-native-web",
"testPathIgnorePatterns": [
"testUtils"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"build": {
"appId": "com.custrepstatus",
"mac": {
"category": "your.app.category.type"
},
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "assets"
}
},
"main": "public/electron.js",
"homepage": "."
}