-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.48 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
{
"name": "react-native-webpack-starter-kit",
"version": "0.1.0",
"description": "Build your React Native with Webpack and Babel.",
"author": "Josh Habdas <jhabdas@gmail.com> (http://habd.as)",
"license": "MIT",
"keywords": [
"android",
"ios",
"javascript",
"mobile",
"native",
"react-native",
"starter-kit",
"webpack"
],
"scripts": {
"android-setup-port": "adb reverse tcp:8081 tcp:8080",
"bundle": "rnws bundle",
"test": "snyk test && npm run lint && npm run snyk-protect",
"lint": "eslint src",
"start": "rnws start",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"repository": {
"type": "git",
"url": "https://github.com/jhabdas/react-native-webpack-starter-kit"
},
"engines": {
"node": ">=4 <7",
"npm": ">=2 <4"
},
"dependencies": {
"react": "~15.1.0",
"react-native": "^0.28.0",
"react-native-social-share": "^0.8.0",
"react-native-vector-icons": "^2.0.3",
"react-native-youtube": "0.7.2",
"snyk": "^1.14.3"
},
"devDependencies": {
"babel-core": "^6.10.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"eslint": "~2.13.1",
"eslint-loader": "^1.3.0",
"eslint-plugin-react": "^5.2.2",
"json-loader": "^0.5.4",
"react-native-webpack-server": "^0.9.3",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"snyk": true
}