forked from serlo/serlo-abc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.42 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
{
"name": "serlo-abc",
"version": "0.1.0",
"private": true,
"devDependencies": {
"@kadira/react-native-storybook": "^2.2.4",
"concurrently": "^3.4.0",
"enzyme": "^2.8.0",
"flow-bin": "^0.38.0",
"flow-typed": "^2.0.0",
"jest": "^19.0.2",
"jest-expo": "^0.3.1",
"prettier": "^0.22.0",
"react-addons-test-utils": "^15.4.2",
"react-native-scripts": "^0.0.26",
"react-test-renderer": "^15.4.2",
"remote-redux-devtools": "0.5.0"
},
"main": "./node_modules/react-native-scripts/build/bin/crna-entry.js",
"scripts": {
"start": "concurrently --kill-others \"storybook start -p 19001\" \"react-native-scripts start\"",
"eject": "react-native-scripts eject",
"android": "concurrently --kill-others \"storybook start -p 19001\" \"react-native-scripts android\"",
"ios": "concurrently --kill-others \"storybook start -p 19001\" \"react-native-scripts ios\"",
"test": "jest",
"format": "prettier --single-quote --write \"{{src,storybook}/**/*,*}.js\"",
"postinstall": "flow-typed install"
},
"jest": {
"preset": "jest-expo",
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js"
}
},
"dependencies": {
"expo": "^15.1.3",
"ramda": "^0.23.0",
"react": "^15.4.2",
"react-native": "^0.42.0",
"react-redux": "^5.0.3",
"redux": "^3.6.0"
}
}