forked from benoitvallon/react-native-nw-react-calculator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.59 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
{
"name": "react-native-nw-react-calculator",
"version": "1.0.0",
"description": "A mobile, desktop and website App with the same code",
"author": "Benoit VALLON <[email protected]> (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.nw.html",
"scripts": {
"start": "node_modules/react-native/packager/packager.sh",
"test": "jest"
},
"window": {
"toolbar": true,
"min_width": 300,
"min_height": 475,
"max_width": 800,
"max_height": 600
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"testFileExtensions": [
"js"
],
"moduleFileExtensions": [
"js"
],
"verbose": true,
"collectCoverage": true
},
"dependencies": {
"es6-promise": "^3.0.2",
"events": "^1.1.0",
"flux": "^2.1.1",
"history": "^1.13.0",
"keymirror": "^0.1.1",
"normalize.css": "^3.0.3",
"object-assign": "^4.0.1",
"react": "^0.14.2",
"react-dom": "^0.14.2",
"react-native": "^0.13.2",
"react-router": "^1.0.0-rc4",
"uniqid": "^1.0.0"
},
"devDependencies": {
"babel": "^5.8.29",
"babel-core": "^5.8.29",
"babel-jest": "^5.3.0",
"babel-loader": "^5.3.2",
"babel-preset-es2015": "^6.0.15",
"babel-preset-react": "^6.0.15",
"css-loader": "~0.21.0",
"eslint": "^1.8.0",
"eslint-plugin-react": "^3.6.3",
"grunt": "~0.4.5",
"grunt-concurrent": "^2.0.4",
"grunt-contrib-clean": "~0.6.0",
"grunt-contrib-connect": "~0.11.2",
"grunt-contrib-copy": "~0.8.2",
"grunt-contrib-watch": "^0.6.1",
"grunt-exec": "^0.4.6",
"grunt-karma": "~0.12.1",
"grunt-open": "~0.2.3",
"grunt-webpack": "~1.0.11",
"jest-cli": "^0.7.1",
"jshint": "^2.8.0",
"jshint-loader": "~0.8.3",
"karma": "~0.13.15",
"karma-chrome-launcher": "~0.2.1",
"karma-firefox-launcher": "~0.1.6",
"karma-jasmine": "~0.3.6",
"karma-phantomjs-launcher": "~0.2.1",
"karma-script-launcher": "~0.1.0",
"karma-webpack": "~1.7.0",
"load-grunt-tasks": "~3.3.0",
"react-hot-loader": "^1.3.0",
"sass-loader": "^3.1.1",
"style-loader": "~0.13.0",
"url-loader": "~0.5.6",
"webpack": "~1.12.2",
"webpack-dev-server": "~1.12.1"
}
}