-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.95 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
{
"name": "rnts_skeleton",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node ./tools/start_ios.js",
"start-android": "node ./tools/start_android.js",
"debug": "rndebugger-open",
"dev": "node node_modules/react-native/local-cli/cli.js start",
"ios": "node node_modules/react-native/local-cli/cli.js run-ios --no-packager",
"android": "node node_modules/react-native/local-cli/cli.js run-android --no-packager",
"build": "node ./tools/build.js",
"build:watch": "node ./tools/build_watch.js",
"build:ts": "tsc -p .",
"build:ts:watch": "tsc -w -p .",
"sync:watch": "grunt sync:dev",
"sync": "grunt sync:prod",
"test": "jest --config jest.json",
"reset": "rimraf ./build && rimraf ./coverage && rimraf ./jest && rimraf ./ios/build && rimraf ./node_modules && yarn"
},
"dependencies": {
"prop-types": "15.5.10",
"react": "16.0.0-alpha.12",
"react-native": "0.45.1"
},
"devDependencies": {
"@types/jest": "20.0.2",
"@types/prop-types": "15.5.1",
"@types/react": "15.0.29",
"@types/react-native": "0.44.11",
"babel-jest": "^20.0.3",
"babel-preset-react-native": "2.0.0",
"grunt": "^1.0.1",
"grunt-contrib-watch": "^1.0.0",
"grunt-sync": "^0.6.2",
"jest": "20.0.4",
"react-native-debugger-open": "0.3.11",
"react-native-typescript-transformer": "1.0.12",
"react-test-renderer": "16.0.0-alpha.12",
"rimraf": "^2.6.1",
"ts-jest": "20.0.6",
"tslint": "5.4.3",
"typescript": "2.3.4"
},
"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)$",
"testPathIgnorePatterns": [
"\\.snap$",
"<rootDir>/node_modules/",
"<rootDir>/lib/"
],
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{ts,tsx}"
],
"cacheDirectory": ".jest/cache"
}
}