-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
91 lines (91 loc) · 3.11 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
{
"name": "matcha",
"version": "0.1.0",
"private": true,
"devDependencies": {
"@storybook/addon-storyshots": "^3.4.10",
"@storybook/react": "^3.4.10",
"@storybook/storybook-deployer": "^2.3.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-jest": "23.0.1",
"babel-loader": "^7.1.2",
"babel-plugin-expo-web": "^0.0.5",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-react-native-web": "^0.4.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-imports": "^1.4.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-react-native": "4.0.0",
"babel-preset-react-native-stage-0": "^1.0.1",
"babel-runtime": "^6.26.0",
"css-loader": "^0.28.7",
"eslint": "^4.19.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-redux-saga": "^0.6.0",
"file-loader": "^1.1.7",
"jest": "^23.4.1",
"jest-react-native": "^18.0.0",
"react-test-renderer": "16.3.1",
"redux-saga-tester": "^1.0.379",
"storybook-addon-intl": "^2.3.0",
"style-loader": "^0.19.0"
},
"scripts": {
"start": "react-native start",
"android": "react-native run-android",
"ios": "react-native run-ios",
"test": "jest",
"test:ci": "jest --ci --maxWorkers 1 --no-watchman",
"web": "webpack-dev-server -d --config ./webpack.config.js --inline --hot --colors --content-base public/ --history-api-fallback",
"build": "NODE_ENV=production webpack -p --config ./webpack.config.js",
"lint": "eslint src/",
"api": "cd api && docker-compose up",
"storybook": "start-storybook -p 9001 -c .storybook -s ./node_modules/react-native-vector-icons",
"deploy-storybook": "storybook-to-ghpages"
},
"jest": {
"preset": "react-native",
"transformIgnorePatterns": [
"node_modules/(?!react-native|expo|react-navigation|native-base-shoutem-theme|@shoutem/theme|@shoutem/animation|@shoutem/ui|tcomb-form-native|native-base|@expo/vector-icons)"
],
"setupTestFrameworkScriptFile": "<rootDir>/src/test/setupTests.js"
},
"dependencies": {
"axios": "^0.18.0",
"crypto-js": "^3.1.9-1",
"deep-freeze": "^0.0.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.3",
"expo-web": "^0.0.12",
"flow": "^0.2.3",
"flow-bin": "^0.68.0",
"flow-typed": "^2.5.1",
"geolib": "^2.0.24",
"intl": "^1.2.5",
"lodash": "^4.17.10",
"moment": "^2.22.2",
"react": "16.3.1",
"react-dom": "16.0.0",
"react-intl": "^2.4.0",
"react-native": "~0.55.2",
"react-native-router-flux": "^4.0.0-beta.28",
"react-native-vector-icons": "^4.6.0",
"react-native-web": "^0.4.0",
"react-redux": "^5.0.7",
"redux": "^3.7.2",
"redux-devtools-extension": "^2.13.2",
"redux-logger": "^3.0.6",
"redux-persist": "^5.9.1",
"redux-saga": "^0.16.0",
"reselect": "^3.0.1",
"webpack": "^3.11.0",
"webpack-dev-server": "2.9.4"
}
}