-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.98 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
{
"name": "personal-webapp",
"version": "0.0.0",
"private": true,
"license": "Apache-2.0",
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/caponetto/personal-webapp.git"
},
"dependencies": {
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@fontsource/nunito": "^5.0.16",
"@fontsource/oxygen": "^5.0.8",
"@fontsource/philosopher": "^5.0.8",
"@fontsource/quicksand": "^5.0.16",
"@fontsource/roboto": "^5.0.8",
"@mui/icons-material": "^5.15.6",
"@mui/material": "^5.15.6",
"@mui/system": "^5.15.6",
"date-fns": "^3.3.1",
"history": "^5.3.0",
"i18next": "^23.8.0",
"i18next-browser-languagedetector": "^7.2.0",
"i18next-http-backend": "^2.4.2",
"js-cookie": "^3.0.5",
"react-i18next": "^14.0.1",
"react-router": "^6.21.3",
"react-router-dom": "^6.21.3"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.23.3",
"@jest/types": "^29.6.3",
"@testing-library/jest-dom": "^6.3.0",
"@testing-library/react": "^14.1.2",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^29.5.11",
"@types/js-cookie": "^3.0.6",
"@types/node": "^20.11.9",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@types/react-router": "^5.1.20",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^6.9.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"html-minimizer-webpack-plugin": "^5.0.0",
"html-replace-webpack-plugin": "^2.6.0",
"html-webpack-plugin": "^5.6.0",
"husky": "^9.0.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"json-minimizer-webpack-plugin": "^5.0.0",
"prettier": "^3.2.4",
"pretty-quick": "^4.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.5",
"source-map-loader": "^5.0.0",
"start-server-and-test": "^2.0.3",
"style-loader": "^3.3.4",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-node-externals": "^3.0.0"
},
"scripts": {
"lint": "yarn eslint ./src --ext .ts,.tsx",
"build:dev": "rimraf dist && webpack --env dev --mode development",
"build:prod": "yarn lint && rimraf dist && webpack --mode production",
"start": "webpack serve --env dev --mode development",
"format": "prettier --write . --ignore-path .gitignore",
"format:check": "prettier --check . --ignore-path .gitignore",
"jest:run": "jest --silent",
"test": "rimraf dist-test && yarn jest:run",
"prepare": "husky install"
}
}