-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.01 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
{
"name": "web-calculator",
"version": "1.0.0",
"description": "Web calculator using React and TypeScript",
"main": "index.js",
"scripts": {
"build": "webpack --config webpack.config.js",
"start": "webpack-dev-server --open --config dev.webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HectorFranc/calculator.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/HectorFranc/calculator/issues"
},
"homepage": "https://github.com/HectorFranc/calculator#readme",
"devDependencies": {
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"html-webpack-plugin": "^4.3.0",
"source-map-loader": "^1.0.0",
"ts-loader": "^7.0.5",
"typescript": "^3.9.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"aphrodite": "^2.4.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"string-hash": "^1.1.3"
}
}