-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.58 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": "react-native-motivation-app",
"author": "Mike Koval",
"description": "Motivation app for Android and iOS",
"license": "MIT",
"homepage": "http://getpepperoni.com",
"repository": {
"type": "git",
"url": "[email protected]:MikeKoval/react-native-motivate-app"
},
"keywords": [
"React Native",
"Motivation app",
"Redux"
],
"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 --minify --verbose",
"test": "NODE_ENV=test mocha --require test/setup.js src/**/*.spec.js --compilers js:babel-core/register",
"test:watch": "chokidar 'src/**/*.js' 'test/**/*.js' -c 'npm test'",
"lint": "eslint src test",
"coverage": "rimraf coverage && istanbul cover --i=src/**/*.js _mocha -- src/**/*.spec.js",
"check-coverage": "istanbul check-coverage coverage/coverage.json",
"commit": "git-cz"
},
"dependencies": {
"bluebird": "^3.3.5",
"chai-enzyme": "^0.5.0",
"es6-symbol": "^3.0.2",
"event-emitter": "^0.3.4",
"immutable": "^3.7.6",
"lodash": "^4.11.0",
"moment": "^2.12.0",
"react": "~15.2.0",
"react-dom": "~15.2.0",
"react-native": "^0.29.0",
"react-native-lock": "futurice/react-native-lock#feature/customizedTheme",
"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": "^6.0.2",
"babel-polyfill": "^6.9.0",
"babel-preset-react-native": "^1.7.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"chokidar-cli": "^1.2.0",
"enzyme": "^2.2.0",
"eslint": "^2.8.0",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-react": "^4.3.0",
"fetch-mock": "^4.5.4",
"istanbul": "1.0.0-alpha.2",
"mocha": "^2.4.5",
"react-addons-test-utils": "15.0.2",
"react-native-mock": "~0.2.5",
"rimraf": "^2.5.2",
"sinon": "^1.17.4",
"ghooks": "1.0.3",
"cz-conventional-changelog": "1.1.5",
"commitizen": "2.5.0",
"validate-commit-msg": "2.0.0"
},
"config": {
"ghooks": {
"pre-commit": "npm run lint",
"commit-msg": "validate-commit-msg"
},
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}