-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.12 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.12 KB
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
92
93
94
95
96
97
98
99
100
101
{
"name": "este",
"private": true,
"scripts": {
"build": "next build src",
"dev": "node src/server.js",
"devtools": "react-devtools",
"flow": "flow",
"install": "gulp native-fix",
"jest": "jest",
"jest:watch": "jest --watch",
"postinstall": "gulp native",
"prettier": "prettier --bracket-spacing --single-quote --tab-width 2 --trailing-comma all --parser babylon --print-width 80 --semi true --write \"{src,__{tests,mocks}__}/**/*.js\"",
"start": "NODE_ENV=production node src/server.js",
"storybook-web": "start-storybook -p 9001 -c .storybook/web",
"storybook-native": "start-storybook -p 9002 -c .storybook/native",
"test": "gulp test",
"test:e2e": "mocha test/e2e --opts ./test/e2e/mocha.opts --compilers js:babel-core/register",
"test:server": "appium &",
"test:webdriver": "webdriver-manager start &",
"build-size-check": "source-map-explorer build/commons.js"
},
"engines": {
"node": ">=6"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/test/e2e"
],
"rootDir": "src"
},
"dependencies": {
"@kadira/storybook": "^2.35.3",
"accepts": "^1.3.3",
"appium": "^1.6.4",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.2",
"babel-plugin-react-intl": "^2.3.1",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-native": "^1.9.1",
"babel-preset-stage-1": "^6.24.1",
"babel-register": "^6.24.1",
"babel-runtime": "^6.23.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"chroma-js": "^1.3.3",
"colors": "^1.1.2",
"del": "^2.1.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "14.1.0",
"eslint-plugin-flowtype": "^2.32.1",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "4.0.0",
"eslint-plugin-react": "^6.10.3",
"eslint-plugin-react-native": "^2.3.2",
"express": "^4.15.2",
"gulp": "^3.9.1",
"gulp-bg": "^0.0.8",
"gulp-eslint": "^3.0.1",
"gulp-if": "^2.0.2",
"gulp-real-favicon": "^0.2.2",
"gulp-util": "^3.0.8",
"intl": "^1.0.0",
"intl-locales-supported": "^1.0.0",
"jest": "19.0.2",
"nconf": "^0.8.1",
"next": "^2.1.1",
"prop-types": "^15.5.8",
"react": "16.0.0-alpha.6",
"react-dom": "15.5.4",
"react-intl": "^2.2.3",
"react-native": "0.43.4",
"react-native-i18n": "^1.0.0",
"react-redux": "^5.0.1",
"react-router": "4.0.0-alpha.6",
"redbox-react": "^1.0.5",
"redux": "^3.6.0",
"redux-logger": "3.0.1",
"regenerator": "^0.9.7",
"regenerator-runtime": "^0.10.3",
"require-dir": "^0.3.0",
"run-sequence": "^1.0.2",
"through2": "^2.0.3",
"wd": "^1.2.0",
"yargs": "^7.1.0"
},
"devDependencies": {
"flow-bin": "0.40.0",
"prettier": "^1.2.2",
"react-devtools": "^2.0.12",
"react-native-web": "^0.0.83",
"source-map-explorer": "^1.3.3"
}
}