-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 879 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 879 Bytes
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
{
"name": "javascript-calculator",
"version": "1.0.0",
"description": "Javascript calculator",
"homepage": "https://alevargass.github.io/javascript-calculator/",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"start": "webpack server",
"predeploy": "npm run build",
"deploy": "gh-pages -d public"
},
"keywords": [],
"author": "Alejandro Vargas",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"gh-pages": "^3.2.3",
"style-loader": "^3.3.1",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.1"
},
"dependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
}
}