forked from benoitvallon/react-native-nw-react-calculator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 3.41 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "ReactNativeNWReactCalculator",
"version": "1.0.0",
"description": "A mobile, desktop and website App with the same code",
"author": "Benoit VALLON <benoitvallon@gmail.com> (http://github.com/benoitvallon)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/benoitvallon/react-native-nw-react-calculator"
},
"homepage": "https://github.com/benoitvallon/react-native-nw-react-calculator",
"keywords": [
"react",
"react-native",
"nw",
"flux",
"babel"
],
"src": "./",
"test": "./test",
"dist": "./dist",
"mainInput": "main",
"mainOutput": "main",
"main": "index.desktop.html",
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"build": "grunt build",
"deploy": "gh-pages -d dist",
"travis": "npm run build && npm run react-native:ios && npm run react-native:android && npm test",
"react-native:ios": "react-native bundle --entry-file src/index.ios.js --bundle-output ios/main.jsbundle --platform ios --dev false",
"react-native:android": "react-native bundle --entry-file src/index.android.js --bundle-output android/app/src/main/assets/index.android.bundle --platform android --dev false",
"serve-nw": "grunt serve-nw",
"serve-electron": "grunt serve-electron",
"serve-web": "grunt serve-web",
"serve-web:dist": "grunt serve-web:dist",
"test": "jest"
},
"window": {
"toolbar": true,
"min_width": 300,
"min_height": 475,
"max_width": 800,
"max_height": 600
},
"jest": {
"roots": [
"src"
],
"moduleFileExtensions": [
"js"
],
"verbose": true,
"collectCoverage": true
},
"dependencies": {
"electron": "^9.1.1",
"events": "^3.2.0",
"flux": "^3.1.3",
"history": "^5.0.0",
"keymirror": "^0.1.1",
"normalize.css": "^8.0.1",
"object-assign": "^4.1.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-native": "^0.63.2",
"react-native-cli": "^2.0.1",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"serve-static": "^1.14.1",
"uniqid": "^5.2.0"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@babel/register": "^7.10.5",
"babel-jest": "^26.1.0",
"babel-loader": "^8.1.0",
"css-loader": "^3.6.0",
"eslint": "^7.5.0",
"eslint-plugin-react": "^7.20.3",
"file-loader": "^6.0.0",
"gh-pages": "^3.1.0",
"grunt": "^1.2.1",
"grunt-cli": "^1.3.2",
"grunt-concurrent": "^3.0.0",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-connect": "^3.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-exec": "^3.0.0",
"grunt-karma": "^4.0.0",
"grunt-open": "^0.2.4",
"grunt-webpack": "^4.0.2",
"jasmine-core": "^3.6.0",
"jest-cli": "^26.1.0",
"jshint": "^2.11.1",
"jshint-loader": "^0.8.4",
"karma": "^5.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^1.3.0",
"karma-jasmine": "^3.3.1",
"karma-script-launcher": "^1.0.0",
"karma-webpack": "^4.0.2",
"load-grunt-tasks": "^5.1.0",
"node-sass": "^4.14.1",
"react-hot-loader": "^4.12.21",
"sass-loader": "^9.0.2",
"style-loader": "^1.2.1",
"url-loader": "^4.1.0",
"webpack": "^4.43.0",
"webpack-dev-server": "^3.11.0"
}
}