-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 2.27 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
{
"name": "mobile-coin-block-explorer",
"description": "MobileCoin Block Explorer",
"version": "1.0.0",
"main": "src/index.tsx",
"repository": "https://github.com/mobilecoinofficial/block-explorer",
"license": "MIT",
"scripts": {
"dev": "webpack-cli serve --mode=development --env development --hot",
"build": "webpack --mode=production --env production --progress",
"lint": "eslint './src/**/*.{ts,tsx,js,jsx}'",
"lint:fix": "eslint './src/**/*.{ts,tsx,js,jsx}' --fix",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/lodash": "^4.14.191",
"@types/node": "16.18.11",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"@types/react-modal": "^3.13.1",
"@types/react-router-dom": "^5.3.3",
"@types/webpack": "5.28.0",
"@types/webpack-dev-server": "^4.7.2",
"@typescript-eslint/eslint-plugin": "5.48.2",
"@typescript-eslint/parser": "5.48.2",
"css-loader": "^6.7.3",
"eslint": "8.32.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.32.1",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-webpack-plugin": "3.2.0",
"fork-ts-checker-webpack-plugin": "7.3.0",
"html-webpack-plugin": "5.5.0",
"jest": "^29.4.2",
"prettier": "2.8.3",
"style-loader": "^3.3.1",
"ts-loader": "9.4.2",
"ts-node": "10.9.1",
"tsconfig-paths-webpack-plugin": "3.5.2",
"typescript": "4.9.4",
"webpack": "5.75.0",
"webpack-cli": "4.10.0",
"webpack-dev-server": "4.11.1"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.11.0",
"@mui/material": "^5.11.5",
"@types/dotenv-webpack": "^7.0.3",
"axios": "^1.3.3",
"dotenv-webpack": "^8.0.1",
"js-base64": "^3.7.4",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-modal": "^3.16.1",
"react-router-dom": "^6.6.2",
"ts-jest": "^29.0.5"
}
}