-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.97 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.97 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
{
"name": "react-native-template",
"version": "0.1.0",
"private": true,
"devDependencies": {
"@ctco-dev/tslint-config-react": "0.1.5",
"@storybook/react-native": "3.1.3",
"@types/jest": "19.2.2",
"@types/react": "15.0.27",
"@types/react-native": "0.44.10",
"@types/react-navigation": "1.0.7",
"babel-jest": "20.0.3",
"babel-preset-react-native": "1.9.2",
"chokidar-cli": "1.2.0",
"jest": "20.0.4",
"jest-cli": "20.0.4",
"react-native-storybook-loader": "1.3.2",
"react-test-renderer": "16.0.0-alpha.6",
"rimraf": "2.6.1",
"ts-jest": "20.0.6",
"tslint": "5.4.3"
},
"scripts": {
"clean": "rimraf compiled",
"packager": "react-native start --root compiled",
"tsc": "npm run clean && tsc -w",
"lint": "tslint \"src/**/*.ts?(x)\"",
"lint:watch": "chokidar \"src/**/*.ts?(x)\" -c \"npm run lint\" --initial",
"android": "react-native run-android",
"ios": "react-native run-ios",
"test": "jest --watch",
"storybook": "storybook start -p 7007 --config-dir compiled",
"prestorybook": "node ./node_modules/.bin/rnstl"
},
"config": {
"react-native-storybook-loader": {
"searchDir": [
"./compiled"
],
"pattern": "**/*.stories.js",
"outputFile": "./storybook/storyLoader.js"
}
},
"jest": {
"preset": "react-native",
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "\\.test\\.(ts|tsx)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transformIgnorePatterns": [
"node_modules/(?!react-native|jsbarcode)"
]
},
"dependencies": {
"native-base": "2.1.5",
"react": "16.0.0-alpha.6",
"react-dom": "15.5.4",
"react-native": "0.44.0",
"react-native-barcode-builder": "1.0.1",
"react-native-i18n": "2.0.1",
"react-navigation": "1.0.0-beta.11",
"typescript": "2.3.4"
}
}