-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.27 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
{
"name": "animation-spike",
"author": {
"email": "[email protected]",
"name": "Jan Aagaard"
},
"license": "MIT",
"private": true,
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"android": "expo start --android",
"check-types": "tsc",
"eject": "expo eject",
"format": "yarn install --frozen-lockfile && prettier --write \"**/*.ts\" \"**/*.tsx\" \"*.js\" \"*.json\" \"*.ts\"",
"ios": "expo start --ios",
"lint": "eslint --format codeframe \"**/*.ts\" \"**/*.tsx\"",
"start": "expo start",
"validate": "yarn install --frozen-lockfile && yarn run lint && yarn run check-types",
"web": "expo start --web"
},
"dependencies": {
"expo": "35.0.1",
"react": "16.8.3",
"react-native": "https://github.com/expo/react-native/archive/sdk-35.0.0.tar.gz"
},
"devDependencies": {
"@types/react": "16.8.25",
"@types/react-native": "0.60.22",
"@typescript-eslint/eslint-plugin": "2.7.0",
"@typescript-eslint/parser": "2.7.0",
"babel-preset-expo": "7.1.0",
"eslint": "6.6.0",
"eslint-config-prettier": "6.6.0",
"eslint-plugin-prettier": "3.1.1",
"eslint-plugin-react": "7.16.0",
"eslint-plugin-react-hooks": "2.3.0",
"expo-cli": "3.8.0",
"prettier": "1.19.1",
"typescript": "3.7.2"
}
}