-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.05 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
{
"name": "Scheduler",
"author": "dhavrosh",
"description": "mobile app for creating and orginizing timetables written with React-Native",
"license": "MIT",
"keywords": [
"React Native"
],
"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.ios.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"
},
"dependencies": {
"bluebird": "^3.3.5",
"es6-symbol": "^3.0.2",
"event-emitter": "^0.3.4",
"immutable": "^3.7.6",
"lodash": "^4.11.0",
"moment": "^2.12.0",
"react": "~15.4.2",
"react-dom": "~15.4.2",
"react-native": "0.41.2",
"react-native-dismiss-keyboard": "^1.0.0",
"react-native-material-design": "^0.3.7",
"react-native-search-header": "^0.1.6",
"react-native-searchbar": "^1.8.0",
"react-native-vector-icons": "^4.0.0",
"react-redux": "^4.4.5",
"redux": "^3.4.0",
"redux-logger": "^2.6.1",
"redux-loop": "^2.1.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": "^2.2.0",
"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",
"react-addons-test-utils": "~15.4.2",
"remote-redux-devtools": "^0.5.7",
"react-native-mock": "~0.2.5",
"react-test-renderer": "~15.4.2",
"rimraf": "^2.5.2"
}
}