-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.9 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
{
"name": "noten",
"version": "2.0.0",
"private": true,
"dependencies": {
"@capacitor/core": "2.4.6",
"@ionic/react": "6",
"@ionic/react-router": "6",
"@types/node": "^12.12.24",
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.3",
"@types/react-router": "^5.1.4",
"@types/react-router-dom": "^5.1.3",
"dotenv": "^8.2.0",
"firebase": "9.7.0",
"firebase-admin": "^9.4.2",
"ionicons": "6",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-scripts": "3.4.0",
"styled-components": "^5.3.5",
"typescript": "3.8.3"
},
"scripts": {
"start": "react-scripts start",
"mock": "firebase emulators:start --import=./mock_db",
"build": "react-scripts build",
"eject": "react-scripts eject",
"pre-commit": "lint-staged",
"format": "prettier src --write",
"lint": "eslint --ext .tsx,.ts --fix src",
"prepare": "husky install"
},
"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"
]
},
"lint-staged": {
"src/**/*.(ts|tsx)": [
"yarn lint",
"yarn format"
]
},
"devDependencies": {
"@capacitor/cli": "2.4.6",
"@types/styled-components": "^5.1.10",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.2"
},
"description": "A Cloud-based Grade Management App"
}