forked from TheStanfordDaily/stanforddaily
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.4 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
82
{
"name": "stanford-daily",
"license": "Apache-2.0",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/TheStanfordDaily/stanford-daily.git"
},
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"build": "EXPO_DEBUG=true yarn expo build:web",
"now-build": "EXPO_DEBUG=true yarn expo build:web"
},
"dependencies": {
"@emotion/babel-preset-css-prop": "^10.0.14",
"@emotion/core": "^10.0.15",
"@emotion/native": "^10.0.14",
"disqus-react": "^1.0.6",
"emotion-native-media-query": "^0.2.1",
"expo": "^35.0.0",
"expo-font": "~7.0.0",
"moment": "^2.24.0",
"next": "^9.0.3",
"next-transpile-modules": "^2.3.1",
"react": "16.8.3",
"react-dom": "^16.8.6",
"react-html-parser": "^2.0.2",
"react-ionicons": "^3.0.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-35.0.0.tar.gz",
"react-native-gesture-handler": "~1.3.0",
"react-native-reanimated": "~1.1.0",
"react-native-web": "^0.11.4",
"react-native-webview": "~5.12.0",
"react-navigation": "^3.11.1",
"wpapi": "^1.2.1"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.4.4",
"@types/node": "^12.7.1",
"@types/react": "^16.8.23",
"@types/react-native": "^0.57.65",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"babel-plugin-module-resolver": "^3.2.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"babel-preset-expo": "^6.0.0",
"eslint": "^6.1.0",
"eslint-config-airbnb": "18.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-import-resolver-babel-module": "^5.1.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-emotion": "^10.0.14",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"expo-cli": "^3.1.0",
"husky": ">=1",
"lint-staged": ">=8",
"prettier": "^1.18.2",
"typescript": "^3.4.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.+(js|jsx|ts|tsx)": [
"eslint"
],
"*.+(md|json)": [
"prettier --check"
]
}
}