-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
104 lines (104 loc) · 3.19 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
{
"name": "macht-sprache-app",
"version": "0.1.0",
"private": true,
"dependencies": {
"@datapunt/matomo-tracker-react": "0.5.1",
"@mdx-js/loader": "1.6.22",
"@mdx-js/mdx": "1.6.22",
"@types/jest": "27.0.2",
"@types/linkify-it": "3.0.2",
"@types/lodash": "4.14.176",
"@types/mdx": "2.0.1",
"@types/mdx-js__react": "1.5.5",
"@types/node": "16.11.7",
"@types/react": "17.0.48",
"@types/react-dom": "17.0.17",
"@types/react-router-dom": "5.3.2",
"@types/react-router-hash-link": "2.4.4",
"@types/webextension-polyfill": "0.8.2",
"@types/webpack-env": "1.16.3",
"babel-loader": "8.1.0",
"clsx": "1.1.1",
"eslint-plugin-lodash": "7.3.0",
"eslint-plugin-mdx": "1.16.0",
"firebase": "9.4.1",
"firebase-tools": "9.22.0",
"i18next": "20.6.1",
"i18next-browser-languagedetector": "6.1.2",
"linkify-it": "3.0.3",
"lodash": "4.17.21",
"prettier": "2.2.1",
"rc-tooltip": "5.1.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-error-boundary": "3.1.4",
"react-i18next": "11.13.0",
"react-router-dom": "5.3.0",
"react-scripts": "4.0.3",
"typescript": "4.7.4",
"webextension-polyfill": "0.8.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"start-firebase": "GOOGLE_APPLICATION_CREDENTIALS=\"`pwd`/functions/gcloud-dev-service-account.json\" firebase emulators:start --only auth,functions,firestore --import=./local-db --export-on-exit=./local-db",
"deploy:rules": "firebase deploy --only firestore:rules",
"deploy:indexes": "firebase deploy --only firestore:indexes",
"deploy:functions": "firebase deploy --only functions",
"deploy:site-next": "npm run build && firebase hosting:channel:deploy next",
"format": "prettier --write ."
},
"eslintConfig": {
"plugins": [
"lodash"
],
"extends": [
"react-app",
"react-app/jest",
"plugin:mdx/recommended"
],
"settings": {
"mdx/code-blocks": true,
"mdx/language-mapper": {}
},
"rules": {
"lodash/import-scope": [
2,
"method"
],
"no-restricted-imports": [
"error",
{
"paths": [
"lodash/fp"
]
}
]
},
"overrides": [
{
"files": [
"*.mdx"
],
"rules": {
"react/jsx-no-undef": "off"
}
}
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}