This repository has been archived by the owner on Mar 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.68 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
{
"name": "area",
"version": "0.0.0",
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"front": "npm run dev -w apps/front",
"api": "npm run dev -w apps/api",
"ios": "npm run ios -w apps/app",
"android": "npm run android -w apps/app",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"types:bundle": "npx swagger-cli bundle -o ./apps/api/generated/openapi-v1.json apps/api/src/entities/openapi.index.json",
"types:generate": "openapi -i apps/api/generated/openapi-v1.json -o packages/services --client axios --name ApiClient --useUnionTypes",
"services:generate": "npm run types:bundle && npm run types:generate"
},
"devDependencies": {
"@types/react-native-vector-icons": "^6.4.10",
"prettier": "^2.5.1",
"turbo": "latest"
},
"engines": {
"npm": ">=8.0.0",
"node": ">=14.0.0"
},
"packageManager": "npm@8.1.2",
"dependencies": {
"@babel/runtime": "^7.17.2",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@mdi/js": "^6.5.95",
"@mui/icons-material": "^5.3.1",
"@mui/material": "^5.4.0",
"@react-native-community/checkbox": "^0.5.11",
"axios": "^0.25.0",
"babel": "^6.23.0",
"form-data": "^4.0.0",
"next-dark-mode": "^3.0.0",
"react": "^17.0.2",
"react-grid-layout": "^1.3.3",
"react-native": "^0.67.2",
"react-native-elements": "^3.4.2",
"react-native-sync-localstorage": "^0.0.3",
"react-native-vector-icons": "^9.1.0",
"react-native-web": "^0.17.7",
"spinners-react": "^1.0.6",
"universal-cookie": "^4.0.4"
}
}