-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
169 lines (169 loc) · 5.37 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
{
"name": "eusy",
"description": "Expo Universal Starter: A low-config, low-bloat, moderately opinionated starter/boilerplate for a universal web+mobile app built upon the managed Expo-CLI workflow. It comes with and demonstrates many commonly used UX patterns. All that with exceptional hot-reload support and < 150kb bundle. More info at https://github.com/hookedjs/eusy.",
"author": "Brian Dombrowski <[email protected]>",
"version": "0.1.2",
"license": "ISC",
"private": true,
"main": "node_modules/expo/AppEntry.js",
"homepage": "https://github.com/hookedjs/eusy#readme",
"bugs": {
"url": "https://github.com/hookedjs/eusy/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hookedjs/eusy.git"
},
"scripts": {
"postinstall": "patch-package",
"clean": "rimraf .env .env.json web-build",
"gen:env": "dotenvi -f .env.yml -s ${APP_ENV:-development} && cat .env | npx envfile2json > .env.json",
"gen:mockdb": "ts-node -T src/mockApi/dbseed.tsx",
"gen:index": "node utils/create-indexes.js",
"gen:svgTsx": "find src -name \"*.svg\" -exec ./utils/tsxify-svg.sh {} src/components/svgs \\;",
"build": "yarn clean && run-p gen:env && BUILD_ENV=production expo build:web",
"bootstrap": "yarn build",
"start": "yarn gen:env && node server.js",
"//start:dev": "yarn gen:env && expo start --web",
"test1": "NODE_ENV=test jest",
"test": "NODE_ENV=test jest --config jest/jest.web.json",
"test:ios": "NODE_ENV=test jest --config jest/jest.ios.json",
"test:android": "NODE_ENV=test jest --config jest/jest.android.json",
"lint": "tslint --fix -p tsconfig.json -c tslint.json",
"lint:fix": "tslint -p tsconfig.json -c tslint.json",
"prettier": "prettier --write \"web-build\" \"src/**/*{.js,jsx,ts,tsx,md.json}\""
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"engineStrict": true,
"engines": {
"node": ">=10.15.3 <12.0.0",
"npm": ">9999.0.0",
"yarn": ">=1.9.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"linters": {
"*.{ts,tsx}": [
"prettier --write",
"tslint --fix -p tsconfig.json -c tslint.json",
"git add"
],
"*.{js,jsx,json}": [
"prettier --write",
"git add"
]
},
"ignore": [
"**/generated/*"
]
},
"prettier": {
"printWidth": 100,
"singleQuote": true
},
"dependencies": {
"@apollo/react-hooks": "^3.0.1",
"@types/lunr": "^2.3.2",
"apollo-boost": "^0.4.4",
"bcryptjs": "^2.4.3",
"deep-object-diff": "^1.1.0",
"deepmerge": "^4.0.0",
"expo": "^34.0.2",
"expo-asset": "^6.0.0",
"expo-font": "^6.0.0",
"express": "^4.0.0",
"gpl": "^0.0.1",
"graphql": "^14.5.3",
"lunr": "npm:lunr-mutable-indexes",
"mobx": "^5.13.0",
"mobx-react-lite": "^2.0.0-alpha.2",
"mobx-utils": "^5.4.1",
"morgan": "^1.9.0",
"query-string": "^6.8.2",
"react": "^16.8.6",
"react-dom": "npm:@hot-loader/react-dom",
"react-helmet": "^5.2.1",
"react-hot-loader": "^4.12.10",
"react-hover-observer": "^2.1.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-34.0.0.tar.gz",
"react-native-animatable": "^1.3.2",
"react-native-elements": "https://github.com/react-native-training/react-native-elements.git#49ca4d0f2d306d01d8e42d90bd57e2978d016d3c",
"react-native-gesture-handler": "^1.3.0",
"react-native-markdown-renderer": "^3.2.8",
"react-native-scalable-image": "^0.5.1",
"react-native-storage": "^1.0.1",
"react-native-svg": "^9.5.3",
"react-native-svg-uri-reborn": "^1.0.8",
"react-native-web": "^0.11.4",
"react-router-dom": "^5.0.1",
"react-router-native": "^5.0.1",
"react-router-native-stack": "https://github.com/hookedjs/react-router-native-stack.git#unimoduleUpgrade",
"react-svg": "^10.0.14",
"shrink-ray-current": "^4.0.0",
"str_shorten": "^1.0.18",
"styled-jsx": "^3.2.1",
"use-react-router": "^1.0.7",
"uuid": "^3.3.3"
},
"devDependencies": {
"@expo/webpack-config": "^0.7.2",
"@types/jest": "^24.0.15",
"@types/node": "^12.6.8",
"@types/react": "^16.8.23",
"@types/react-native": "^0.57.65",
"@types/react-router-dom": "^4.3.4",
"@types/react-router-native": "^4.2.4",
"@types/react-svg": "^5.0.0",
"@types/styled-jsx": "^2.2.8",
"babel-jest": "24.7.1",
"babel-preset-expo": "^6.0.0",
"copy-webpack-plugin": "^5.0.4",
"create-ts-index": "^1.10.2",
"dotenv": "^8.0.0",
"dotenvi": "^0.6.0",
"envfile": "^3.0.0",
"expo-cli": "^3.0.9",
"faker": "^4.1.0",
"glob": "^7.1.4",
"husky": "^3.0.2",
"jest": "^24.8.0",
"lint-staged": "^8.2.1",
"npm-run-all": "^4.1.5",
"patch-package": "^6.1.2",
"prettier": "^1.18.2",
"react-test-renderer": "^16.8.6",
"rimraf": "^2.6.3",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"tslint": "5.16.0",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-etc": "^1.6.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.4.5",
"webpack-bundle-analyzer": "^3.4.1"
},
"keywords": [
"react-native",
"react-native-web",
"react",
"expo",
"ios",
"android",
"universal",
"expo-cli",
"starter",
"boilerplate",
"react-router",
"mobx"
]
}