This repository has been archived by the owner on Jan 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
89 lines (89 loc) · 2.92 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
{
"name": "illuminsight",
"version": "1.1.0",
"description": "Read smarter",
"main": "index.js",
"scripts": {
"watch-check-types": "npm run check-types -- -w",
"watch-coverage": "npm run coverage -- --watch",
"start-webpack": "webpack-dev-server",
"check-format": "prettier --check **/*.{ts,js,md,tsx,html}",
"check-linter": "eslint **/*.{ts,js,tsx}",
"watch-build": "npm run build -- --watch",
"check-types": "tsc --noEmit",
"watch-test": "npm run test -- --watch",
"fix-linter": "npm run check-linter -- --fix",
"coverage": "npm run test -- --coverage",
"format": "prettier --write **/*.{ts,js,md,tsx,html}",
"build": "webpack-cli",
"test": "jest --detectOpenHandles --runInBand"
},
"author": "Xyfir, LLC <[email protected]> (https://www.xyfir.com)",
"license": "UNLICENSED",
"dependencies": {
"@hot-loader/react-dom": "^16.11.0",
"@material-ui/core": "^4.7.0",
"@material-ui/icons": "^4.5.1",
"@material-ui/styles": "^4.6.0",
"axios": "^0.19.0",
"date-fns": "^2.8.1",
"dotenv": "^8.2.0",
"enve": "^1.0.4",
"fuse.js": "^3.4.6",
"iso-639-1": "^2.1.0",
"jszip": "^3.2.2",
"localforage": "^1.7.3",
"notistack": "^0.9.6",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-hot-loader": "^4.12.18",
"react-infinite-scroller": "^1.2.4",
"react-redux": "^7.1.3",
"react-router-dom": "^5.1.2",
"redux": "^4.0.4",
"typeface-roboto": "0.0.75",
"wtf_wikipedia": "^7.8.0"
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/preset-react": "^7.7.4",
"@babel/preset-typescript": "^7.7.4",
"@testing-library/react": "^9.3.2",
"@types/dotenv": "^8.2.0",
"@types/html-webpack-plugin": "^3.2.1",
"@types/jest": "^24.0.23",
"@types/jszip": "^3.1.6",
"@types/react": "^16.9.13",
"@types/react-dom": "^16.9.4",
"@types/react-infinite-scroller": "^1.2.1",
"@types/react-redux": "^7.1.5",
"@types/react-router-dom": "^5.1.2",
"@types/webpack-manifest-plugin": "^2.1.0",
"@typescript-eslint/eslint-plugin": "^2.8.0",
"@typescript-eslint/parser": "^2.8.0",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"compression-webpack-plugin": "^3.0.0",
"css-loader": "^3.2.0",
"eslint": "^6.7.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.3.0",
"file-loader": "^4.3.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.9.0",
"jest-extended": "^0.11.2",
"prettier": "^1.19.1",
"style-loader": "^1.0.0",
"ts-jest": "^24.2.0",
"typescript": "^3.7.2",
"webapp-webpack-plugin": "^2.7.1",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"webpack-manifest-plugin": "^2.2.0"
}
}