-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.96 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
{
"name": "glossary",
"dependencies": {
"@emotion/react": "11.9.3",
"@emotion/styled": "11.9.3",
"@mui/icons-material": "5.8.4",
"@mui/material": "5.8.6",
"@mui/system": "5.11.8",
"firebase": "9.8.4",
"firebaseui": "6.0.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-markdown": "6.0.3",
"react-redux": "8.0.2",
"react-router-dom": "6.2.2",
"react-syntax-highlighter": "15.4.5",
"redux": "4.0.5",
"redux-actions": "2.6.5",
"redux-devtools-extension": "2.13.9",
"redux-logger": "3.0.6",
"redux-saga": "1.1.3",
"rehype-raw": "5.1.0",
"remark-gfm": "1.0.0",
"workbox-precaching": "6.5.4"
},
"devDependencies": {
"@stylelint/postcss-css-in-js": "0.38.0",
"@swc/core": "1.3.20",
"@swc/jest": "0.2.23",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@tsconfig/strictest": "1.0.1",
"@types/jest": "29.2.3",
"@types/react": "18.0.14",
"@types/react-dom": "18.0.5",
"@types/react-syntax-highlighter": "13.5.2",
"@types/redux-actions": "2.6.2",
"@types/redux-logger": "3.0.9",
"@types/redux-mock-store": "1.0.3",
"@typescript-eslint/eslint-plugin": "5.51.0",
"@typescript-eslint/parser": "5.51.0",
"copy-webpack-plugin": "11.0.0",
"dotenv-webpack": "8.0.1",
"esbuild-loader": "2.20.0",
"eslint": "8.34.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "8.6.0",
"eslint-import-resolver-webpack": "0.13.2",
"firebase-tools": "11.22.0",
"html-webpack-plugin": "5.5.0",
"husky": "8.0.2",
"jest": "29.3.1",
"jest-environment-jsdom": "29.3.1",
"lighthouse": "9.6.4",
"lint-staged": "13.0.4",
"prettier": "2.8.4",
"redux-mock-store": "1.5.4",
"stylelint": "14.15.0",
"stylelint-config-prettier": "9.0.5",
"stylelint-config-recess-order": "3.1.0",
"stylelint-config-standard": "29.0.0",
"typescript": "4.9.3",
"webpack": "5.75.0",
"webpack-bundle-analyzer": "4.7.0",
"webpack-cli": "5.0.0",
"webpack-dev-server": "4.11.1",
"workbox-webpack-plugin": "6.5.4"
},
"license": "MIT",
"lint-staged": {
"*.ts": [
"npm run lint:js",
"npm run fmt"
],
"*.tsx": [
"npm run lint:js",
"npm run lint:style",
"npm run fmt"
]
},
"private": true,
"scripts": {
"start": "webpack-dev-server --port 8000 --mode=development",
"build": "webpack --mode=development",
"build:production": "webpack --mode=production",
"lint:js": "eslint --ignore-path .gitignore '**/*.{ts,tsx}'",
"lint:style": "stylelint --ignore-path .gitignore '**/*.tsx'",
"fmt": "prettier --write --ignore-path .gitignore '**/*.{ts,tsx}'",
"test": "jest --watchAll",
"analyze": "webpack --mode=development --analyze",
"ts-prune": "npx ts-prune",
"fixpack": "npx fixpack",
"clean:cache": "rimraf ./node_modules/.cache/*",
"clean:dist": "rimraf ./dist/*"
},
"volta": {
"node": "16.13.2"
}
}