-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.81 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
{
"name": "react-native-typescript-wallaby-jest",
"displayName": "React Native Typescript Wallaby Jest",
"description": "Skeleton React Native with Typescript",
"version": "0.1.0",
"private": true,
"main": "./node_modules/react-native-scripts/build/bin/crna-entry.js",
"scripts": {
"tsc": "tsc",
"clean": "rimraf build",
"build": "yarn clean && yarn tsc",
"start": "react-native-scripts start",
"eject": "react-native-scripts eject",
"android": "react-native-scripts android",
"ios": "react-native-scripts ios",
"test": "jest --colors --forceExit",
"test-watch": "jest --colors --watch",
"test-update": "jest --colors -u --forceExit",
"test-coverage": "jest --colors --forceExit --coverage",
"lint": "tslint src/**/*.ts*",
"lint-fix": "tslint --fix src/**/*.ts*",
"prettier": "prettier --write \"src/**/*.ts*\"",
"prestorybook": "rnstl",
"storybook": "storybook start -p 7007 -c \"src/test/Storybook\"",
"build-ios": "exp build:ios",
"build-android": "exp build:android",
"validate": "yarn build && yarn test && yarn lint"
},
"dependencies": {
"@expo/vector-icons": "^6.2.2",
"expo": "^24.0.0",
"react": "16.2.0",
"react-native": "^0.51.0"
},
"devDependencies": {
"@storybook/addon-actions": "^3.3.11",
"@storybook/addon-links": "^3.3.11",
"@storybook/addon-storyshots": "^3.3.11",
"@storybook/react-native": "^3.3.11",
"@types/enzyme": "^3.1.8",
"@types/expo": "^24.0.3",
"@types/jest": "^22.1.1",
"@types/react": "^16.0.36",
"@types/react-native": "^0.52.7",
"@types/storybook__addon-actions": "^3.0.1",
"babel-core": "^6.26.0",
"babel-jest": "^22.1.0",
"babel-preset-react-native": "^4.0.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.1",
"exp": "^49.1.0",
"jest": "^22.1.4",
"jest-expo": "^25.1.0",
"jest-junit": "^3.4.1",
"jsdom": "^11.6.2",
"prettier": "^1.10.2",
"prop-types": "^15.6.0",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.2.0",
"react-native-mock": "^0.3.1",
"react-native-mock-render": "^0.0.19",
"react-native-scripts": "^1.11.1",
"react-native-storybook-loader": "^1.7.0",
"react-native-typescript-transformer": "^1.2.3",
"rimraf": "^2.6.2",
"ts-jest": "^22.0.2",
"tslib": "^1.9.0",
"tslint": "^5.9.1",
"tslint-config-airbnb": "^5.5.0",
"tslint-config-prettier": "^1.7.0",
"tslint-plugin-prettier": "^1.3.0",
"tslint-react": "^3.4.0",
"typescript": "^2.7.1"
},
"config": {
"react-native-storybook-loader": {
"searchDir": ["./src"],
"pattern": "**/*.story.tsx",
"outputFile": "./src/test/storybook/storyLoader.js"
}
},
"jest-junit": {
"suiteName": "Jest Tests",
"output": "temp/jestTests.xml"
}
}