forked from PaulLeCam/react-native-electron
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.12 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.12 KB
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
{
"name": "react-native-electron",
"version": "0.9.0",
"description": "Electron extensions to React Native for Web",
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "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-serve ./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",
"test": "eslint ./src && flow check"
},
"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/*"
],
"dependencies": {
"warning": "^4.0.0"
},
"peerDependencies": {
"electron": "^3.0.0",
"react": "^16.5.1",
"react-native-web": "^0.9.0"
},
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.2",
"cross-env": "^5.2.0",
"electron": "^3.0.0",
"eslint": "^5.6.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-flowtype": "^2.50.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.11.1",
"flow-bin": "^0.81.0",
"prettier": "^1.14.3",
"prettier-eslint": "^8.8.2",
"prop-types": "^15.6.2",
"react": "^16.5.2",
"react-art": "^16.5.2",
"react-dom": "^16.5.2",
"react-native-web": "^0.9.0",
"rimraf": "^2.6.2",
"webpack": "^4.19.1",
"webpack-serve": "^2.0.2"
}
}