-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.43 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.43 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
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
{
"name": "twenty-timer",
"description": "Minimilast 20-minute/20-second eye care timer app built with React Native Expo",
"author": "Brennan D Baraban <brennan@bdov.dev>",
"license": "MIT",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/bdbaraban/twenty-timer"
},
"bugs": {
"url": "https://github.com/bdbaraban/twenty-timer/issues"
},
"keywords": [
"react",
"react native",
"expo",
"mobx",
"react testing library",
"eye",
"timer",
"countdown",
"minimalist"
],
"main": "node_modules/expo/AppEntry.js",
"dependencies": {
"expo": "^34.0.4",
"expo-av": "~6.0.0",
"expo-linear-gradient": "~6.0.0",
"mobx": "^5.13.0",
"mobx-react": "^6.1.3",
"react": "16.9.0",
"react-dom": "^16.9.0",
"react-native": "https://github.com/expo/react-native/archive/sdk-34.0.0.tar.gz",
"react-native-animatable": "^1.3.2",
"react-native-gesture-handler": "~1.3.0",
"react-native-reanimated": "~1.1.0",
"react-native-size-matters": "^0.2.1",
"react-native-web": "^0.11.7",
"react-navigation": "^3.12.1"
},
"devDependencies": {
"@testing-library/react-native": "^4.0.8",
"@types/expo": "^32.0.13",
"@types/jest": "^24.0.18",
"@types/react": "^16.9.2",
"@types/react-native": "^0.60.8",
"@types/react-test-renderer": "^16.9.0",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"babel-preset-expo": "^6.0.0",
"eslint": "^6.2.2",
"eslint-config-prettier": "^6.1.0",
"eslint-config-react": "^1.1.7",
"eslint-import-resolver-typescript": "^1.1.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.15.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.0.1",
"eslint-plugin-react-native": "^3.7.0",
"expo-cli": "^3.0.10",
"jest-expo": "^34.0.1",
"prettier": "^1.18.2",
"react-test-renderer": "^16.9.0",
"rimraf": "^3.0.0",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3"
},
"scripts": {
"android": "expo start --android",
"ios": "expo start --ios",
"start": "expo start",
"eject": "expo eject",
"clean": "rimraf .expo && rimraf .expo-shared",
"login:expo": "expo login",
"publish:expo": "expo publish",
"lint": "eslint **/*.{js,jsx,ts,tsx}",
"test": "jest"
}
}