-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 3.18 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
{
"name": "ess-schulichhub",
"version": "0.2.3",
"private": true,
"dependencies": {
"@ionic-native/youtube-video-player": "^5.30.0",
"@ionic/react": "^5.5.2",
"@ionic/react-router": "^5.5.2",
"@reduxjs/toolkit": "^1.5.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.4.0",
"@testing-library/user-event": "^8.0.3",
"@types/duplexify": "^3.6.0",
"@types/fs-extra": "^9.0.4",
"@types/jest": "^24.0.25",
"@types/node": "^12.12.24",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"@types/react-router": "^5.1.4",
"@types/react-router-dom": "^5.1.3",
"@types/react-select": "^4.0.13",
"classnames": "^2.3.1",
"cordova-plugin-youtube-video-player": "^2.4.0",
"firebase": "^8.0.2",
"ionicons": "^5.0.0",
"lodash": "^4.17.21",
"react": "^17.0.1",
"react-dom": "^16.13.0",
"react-redux": "^7.2.2",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-router-redux": "^4.0.8",
"react-select": "^4.3.0",
"redux": "^4.0.5",
"redux-observable": "^1.2.0",
"typesafe-actions": "^5.1.0",
"typescript": "^4.1.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint-check": "eslint ./src --ext .js,.jsx,.ts,.tsx",
"lint-fix": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"prettier-check": "prettier --check \"src/**/*.{js,ts,tsx}\"",
"prettier-fix": "prettier --write \"src/**/*.{js,ts,tsx}\"",
"dev": "docker-compose up",
"dev-rebuild": "docker-compose up --build"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"description": "An Ionic project",
"devDependencies": {
"@types/lodash": "^4.14.168",
"@types/react-redux": "^7.1.16",
"@types/redux": "^3.6.0",
"@types/redux-thunk": "^2.1.0",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.21.5",
"husky": "^5.0.4",
"lint-staged": ">=10",
"pinst": "^2.1.1",
"prettier": "^2.2.0",
"react-scripts": "4.0.1",
"sass": "^1.49.9"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
],
"*.js": "eslint --cache --fix"
}
}