-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 2.2 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
{
"name": "root",
"version": "1.0.0",
"private": true,
"engines": {
"node": "^10.13.0"
},
"workspaces": {
"packages": [
"modules/*",
"supports/*"
]
},
"scripts": {
"clean": "node ./scripts/clean.js",
"clean:android": "cd android && ./gradlew clean",
"clean:ios": "cd ios && shx rm -rf build",
"install:android": "react-native run-android",
"install:ios": "react-native run-ios",
"lint": "eslint modules --quiet",
"postinstall": "rndebugger-open",
"precommit": "lint-staged",
"prepare": "patch-package",
"rename": "react-native-rename",
"start": "react-native start --reset-cache",
"storybook": "concurrently \"storybook start -p 7007\" \"node node_modules/react-native/local-cli/cli.js start --projectRoot storybook --config ./metro.storybook.config.js\"",
"test": "jest"
},
"dependencies": {
"react": "16.9.0",
"react-native": "0.61.5"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/runtime": "^7.6.2",
"@react-native-community/eslint-config": "^0.0.5",
"@storybook/addon-actions": "4.1.18",
"@storybook/addon-links": "4.1.18",
"@storybook/addons": "4.1.18",
"@storybook/react-native": "4.1.18",
"babel-core": "6.26.3",
"babel-jest": "^24.9.0",
"babel-runtime": "6.26.0",
"concurrently": "4.1.0",
"eslint": "^5.0.0",
"find-root": "1.1.0",
"fs-extra": "7.0.1",
"glob": "7.1.3",
"inquirer-directory": "2.1.0",
"jest": "^24.9.0",
"lerna": "3.13.4",
"metro-react-native-babel-preset": "^0.56.0",
"patch-package": "6.1.2",
"plop": "2.1.0",
"postinstall-prepare": "1.0.1",
"prettier": "1.14.3",
"react-dom": "16.9.0",
"react-native-debugger-open": "0.3.24",
"react-native-rename": "2.4.1",
"react-test-renderer": "16.9.0",
"require-all": "3.0.0",
"shelljs": "0.8.3",
"shx": "0.3.2",
"typescript": "^3.7.5"
},
"jest": {
"preset": "react-native",
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js"
},
"testMatch": [
"**/?(*.)+(test).js?(x)"
]
},
"lint-staged": {
"modules/**/*.js": [
"plop collect all",
"git add -A"
]
}
}