-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.15 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
{
"name": "mortgage-calc",
"author": {
"name": "Yuriy Vyatkin"
},
"license": "Mozilla Public License 2.0",
"repository": "https://yuriyvyatkin.github.io/mortgage-calc",
"homepage": "https://gitname.github.io/mortgage-calc",
"main": "src/index.tsx",
"private": true,
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"start": "webpack-dev-server --mode development --open --hot",
"build": "webpack --mode production"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.21.5",
"@svgr/webpack": "^8.1.0",
"@types/gh-pages": "^3.2.1",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"babel-loader": "^9.1.2",
"css-loader": "^6.8.1",
"gh-pages": "^5.0.0",
"html-webpack-plugin": "^5.5.3",
"style-loader": "^3.3.3",
"terser-webpack-plugin": "^5.3.9",
"typescript": "^5.1.3",
"webpack": "^5.88.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}