-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.66 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
{
"name": "tstest",
"version": "0.0.1",
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/tstest-components/",
"**/tstest-components/**",
"**/tstest-core/",
"**/tstest-core/**",
"**/tstest-just-type/",
"**/tstest-just-type/**"
]
},
"workspace-sources": {
"*": [
"packages/*/src"
]
},
"scripts": {
"ts:watch": "yarn workspace tstest-core ts:watch & yarn workspace tstest-components ts:watch",
"start": "node_modules/.bin/react-native start --config ./../../../../rn-cli.config.js",
"clean:node": "rm -rf node_modules packages/**/node_modules yarn.lock packages/**/yarn.lock && yarn",
"test": "jest"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^23.1.3",
"@types/react": "^16.4.4",
"@types/react-native": "^0.55.26",
"@types/react-test-renderer": "^16.0.1",
"babel-jest": "23.2.0",
"babel-preset-react-native": "4.0.0",
"jest": "23.2.0",
"react-addons-test-utils": "^15.6.2",
"react-native-typescript-transformer": "^1.2.10",
"react-test-renderer": "16.3.1",
"ts-jest": "^22.4.6",
"tslint": "^5.10.0",
"typescript": "^2.9.2"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(js)$": "<rootDir>/node_modules/babel-jest",
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec)\\.(ts|tsx|js)$",
"testIgnorePatterns": [
"\\.snap$",
"<rootDir>/node_modules/"
],
"cacheDirectory": ".jest/cache"
}
}