-
Notifications
You must be signed in to change notification settings - Fork 643
/
package.json
82 lines (82 loc) · 2.4 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
{
"name": "PepperoniAppTemplate",
"author": "Futurice",
"description": "React Native App Starter Kit for Android and iOS",
"license": "MIT",
"homepage": "http://getpepperoni.com",
"bugs": "https://github.com/futurice/pepperoni-app-kit/issues",
"repository": {
"type": "git",
"url": "https://github.com/futurice/pepperoni-app-kit"
},
"keywords": [
"React Native",
"Starter Kit",
"Bitrise",
"Redux",
"Auth0"
],
"version": "1.0.0",
"private": false,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"bundle:ios": "node ./node_modules/react-native/local-cli/cli.js bundle --platform ios --entry-file index.js --bundle-output ios/PepperoniAppTemplate/main.jsbundle --dev=false --verbose",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src test",
"coverage": "rimraf coverage && jest --coverage",
"version": "support/version-ios.sh"
},
"jest": {
"preset": "react-native",
"setupFiles": [
"<rootDir>/test/setup.js"
],
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?react-native|react-navigation)"
]
},
"dependencies": {
"bluebird": "^3.3.5",
"event-emitter": "^0.3.4",
"immutable": "^3.7.6",
"lodash": "^4.17.13",
"moment": "^2.12.0",
"prop-types": "^15.6.0",
"react": "^16.0.0-beta.5",
"react-native": "^0.49.3",
"react-native-vector-icons": "^4.4.2",
"react-navigation": "1.0.0-beta.11",
"react-redux": "^5.0.6",
"redux": "^3.4.0",
"redux-logger": "^2.6.1",
"redux-loop-symbol-ponyfill": "^2.2.0",
"redux-promise": "^0.5.3",
"redux-thunk": "^2.0.1",
"standard-http-error": "^2.0.0"
},
"devDependencies": {
"babel-core": "^6.9.0",
"babel-eslint": "^7.1.0",
"babel-jest": "^17.0.2",
"babel-polyfill": "^6.9.0",
"babel-preset-react-native": "^1.9.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.9.0",
"enzyme": "^3.0.0",
"enzyme-adapter-react-16": "^1.0.2",
"eslint": "^3.10.1",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-react": "^6.7.1",
"fetch-mock": "^5.5.0",
"istanbul": "1.0.0-alpha.2",
"jest": "^17.0.2",
"plop": "^1.7.4",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^16.0.0",
"react-native-mock": "~0.2.5",
"react-test-renderer": "~15.4.2",
"remote-redux-devtools": "^0.5.7",
"rimraf": "^2.5.2"
}
}