-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.58 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
{
"name": "dreamsteps",
"version": "0.0.0",
"description": "HackCMU Submission Fall 2022",
"private": true,
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"android": "yarn run start --android",
"check-types": "tsc",
"ios": "yarn run start --ios",
"lint": "eslint --format unix \"**/*.ts\" \"**/*.tsx\"",
"start": "expo start --tunnel",
"validate": "yarn install --frozen-lockfile && yarn run lint && yarn run check-types"
},
"engines": {
"node": ">=10",
"yarn": ">=1.1"
},
"dependencies": {
"@react-navigation/native": "^6.0.10",
"@react-navigation/native-stack": "^6.9.0",
"@react-navigation/stack": "^6.2.1",
"expo": "^47.0.8",
"expo-av": "~13.0.2",
"expo-splash-screen": "~0.17.5",
"nativewind": "^2.0.10",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-native": "0.70.5",
"react-native-gesture-handler": "^2.8.0",
"react-native-safe-area-context": "^4.4.1",
"react-native-screens": "^3.18.2",
"react-native-web": "~0.18.9"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.20.2",
"@types/react": "~17.0.44",
"@types/react-native": "~0.64.24",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"babel-preset-expo": "9.0.2",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"expo-cli": "^5.4.3",
"postcss": "^8.4.19",
"prettier": "^2.6.2",
"tailwindcss": "^3.1.8",
"typescript": "~4.3.5"
}
}