forked from PaulLeCam/react-native-electron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.09 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
{
"name": "react-native-electron",
"version": "0.13.0",
"description": "Electron extensions to React Native for Web",
"main": "lib/index.js",
"module": "es/index.js",
"scripts": {
"clean": "rimraf lib es",
"compile:lib": "BABEL_ENV=cjs babel src --out-dir lib",
"compile:es": "BABEL_ENV=esm babel src --out-dir es",
"build": "npm run clean && npm run compile:lib && npm run compile:es",
"example:server": "webpack-dev-server --config ./example/webpack.config.js",
"example:electron": "electron ./example/app/main.js",
"flow": "flow check",
"prepublishOnly": "npm run build",
"start": "npm run test && npm run build",
"lint": "eslint ./src ./example",
"typecheck": "flow check",
"test": "npm run lint && npm run typecheck"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PaulLeCam/react-native-electron.git"
},
"author": "Paul Le Cam",
"license": "MIT",
"bugs": {
"url": "https://github.com/PaulLeCam/react-native-electron/issues"
},
"homepage": "https://github.com/PaulLeCam/react-native-electron#readme",
"files": [
"es/*",
"lib/*"
],
"peerDependencies": {
"electron": "^8.0.0",
"react": "^16.9.0",
"react-native-web": "^0.12.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-export-namespace-from": "^7.8.3",
"@babel/preset-env": "^7.9.0",
"@babel/preset-flow": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"cross-env": "^7.0.2",
"electron": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"flow-bin": "^0.122.0",
"prettier": "^2.0.2",
"prettier-eslint": "^9.0.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-native-web": "^0.12.2",
"rimraf": "^3.0.2",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
}
}