This repository was archived by the owner on Apr 2, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.62 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.62 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
{
"name": "blockstack",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "react-native start",
"test": "jest",
"lint": "eslint .",
"lint:fix": "eslint src/ --fix",
"format": "prettier --print-width=100 --single-quote --trailing-comma all --write \"{src,__tests__}/**/*.js\"",
"lint-staged": "lint-staged",
"clear": "watchman watch-del-all && rm -rf $TMPDIR/react-native-packager-cache-* && rm -rf $TMPDIR/metro-bundler-cache-* && rm -rf node_modules/ && yarn cache clean && yarn && react-native start --reset-cache"
},
"dependencies": {
"react": "16.9.0",
"react-native": "0.61.0-rc.3",
"react-native-blockstack": "^0.4.0",
"react-native-gesture-handler": "^1.4.1",
"react-native-linear-gradient": "^2.5.6",
"react-native-maps": "^0.25.0",
"react-native-reanimated": "^1.2.0",
"react-native-screens": "^2.0.0-alpha.3",
"react-navigation": "^4.0.2",
"react-navigation-stack": "^1.5.4",
"react-redux": "^7.1.1",
"redux": "^4.0.4",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/runtime": "^7.6.0",
"@react-native-community/eslint-config": "^0.0.5",
"babel-jest": "^24.9.0",
"eslint": "^6.3.0",
"eslint-plugin-import": "^2.18.2",
"jest": "^24.9.0",
"lint-staged": "^9.2.5",
"metro-react-native-babel-preset": "^0.56.0",
"pre-commit": "^1.2.2",
"react-test-renderer": "16.8.6"
},
"jest": {
"preset": "react-native"
},
"lint-staged": {
"*.js": [
"yarn run lint:fix",
"git add"
]
},
"pre-commit": "lint-staged"
}