-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.37 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
{
"name": "oh-my-breaches",
"version": "1.0.0",
"description": "Find breaches and also see if your data has been compromised",
"author": "Caleb Dudley",
"scripts": {
"watch": "ENV=local webpack serve --mode development",
"build": "webpack --mode production",
"test": "jest"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"devDependencies": {
"@babel/core": "^7.24.6",
"@babel/preset-env": "^7.24.6",
"@babel/preset-react": "^7.24.6",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^15.0.7",
"babel-loader": "^9.1.3",
"css-loader": "^7.1.2",
"enzyme": "^3.11.0",
"html-webpack-plugin": "^5.6.0",
"jest": "^29.7.0",
"mini-css-extract-plugin": "^2.9.0",
"noop-webpack-plugin": "^1.0.1",
"path": "^0.12.7",
"style-loader": "^4.0.0",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"webpack-merge": "^5.10.0"
},
"dependencies": {
"@astrocaleb/content-slider": "^1.0.0",
"@tanstack/react-query": "^5.37.1",
"axios": "^1.7.2",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"react": "^18.3.1",
"react-dom": "^18.3.1"
}
}