This repository has been archived by the owner on Feb 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.88 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
{
"private": true,
"name": "mzm-frontend",
"version": "0.0.0",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server",
"format": "prettier --write src/**/*.{ts,tsx}",
"lint": "eslint --ext .ts,.tsx,.js,.jsx src/",
"pretest": "npm run lint",
"test": "jest --maxWorkers=75%",
"build": "webpack",
"build:prod": "webpack --mode=production"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.10",
"@types/marked": "^1.1.0",
"@types/node": "^14.6.0",
"@types/react": "^16.9.46",
"@types/react-dom": "^16.9.8",
"@types/react-redux": "^7.1.9",
"@types/react-router-dom": "^5.1.5",
"@types/styled-components": "^5.1.2",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"comlink-loader": "^2.0.0",
"copy-webpack-plugin": "^6.0.3",
"css-loader": "^4.2.1",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"file-loader": "^6.0.0",
"jest": "^26.4.0",
"prettier": "^2.0.5",
"rmtcmd": "^0.3.0",
"style-loader": "^1.2.1",
"ts-jest": "^26.2.0",
"ts-loader": "^8.0.2",
"typescript": "^3.9.7",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"workbox-webpack-plugin": "^5.1.3",
"worker-plugin": "^5.0.0"
},
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"comlink": "^4.3.0",
"dayjs": "^1.8.33",
"dompurify": "^2.0.12",
"highlight.js": "^10.1.2",
"marked": "^1.1.1",
"normalize.css": "^8.0.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.1",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"styled-components": "^5.1.1",
"validator": "^13.1.1"
}
}