-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.62 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.62 KB
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
{
"name": "mocomoco-admin-ionic",
"version": "0.0.1",
"private": true,
"description": "mocomoco-admin-ionic",
"scripts": {
"dev": "concurrently \"npm run server\" \"npm run front\"",
"front": "ionic serve -p 3000",
"server": "nodemon --watch server server/index.js",
"run:prod": "http-server ./build -p 3000",
"build": "react-scripts build",
"serve:build": "npx serve -s build",
"sync": "yarn build && npx cap sync",
"dev:ios": "ionic capacitor run ios -l --external",
"dev:and": "ionic capacitor run android -l --external",
"open:and": "npx cap open android",
"open:ios": "npx cap open ios",
"lint": "eslint 'src/**/*.{ts,tsx,js,jsx}'",
"lint:fix": "eslint --fix 'src/**/*.{ts,tsx,js,jsx}'",
"typecheck": "tsc --noEmit --incremental false",
"eject": "react-scripts eject"
},
"devDependencies": {
"@capacitor/cli": "2.4.2",
"@types/crypto-js": "^4.0.1",
"@types/lodash": "^4.14.162",
"@types/mobx-task": "^2.0.1",
"@types/node": "^14.14.0",
"@types/react": "^17.0.14",
"@types/react-dom": "^17.0.9",
"@types/react-router": "^5.1.16",
"@types/react-router-dom": "^5.1.8",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"express": "^4.17.1",
"faker": "^5.5.3",
"morgan": "^1.10.0",
"prettier": "^2.3.2"
},
"dependencies": {
"@capacitor/core": "2.4.2",
"@ionic/react": "^5.4.0",
"@ionic/react-router": "^5.4.0",
"axios": "^0.21.1",
"compressorjs": "^1.0.7",
"crypto-js": "^4.0.0",
"date-fns": "^2.17.0",
"dayjs": "^1.10.6",
"http-proxy-middleware": "^2.0.1",
"http-server": "^0.12.3",
"inko": "^1.1.1",
"ionicons": "^5.2.3",
"lodash": "^4.17.21",
"mobx": "^5.15.7",
"mobx-react-lite": "^2.2.2",
"mobx-task": "^2.0.1",
"node-sass": "^6.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-dropzone": "^11.3.4",
"react-hook-form": "^7.15.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"react-simple-captcha": "^8.1.1",
"typescript": "^4.3.5"
},
"eslintConfig": {
"extends": "react-app, prettier"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}