-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.36 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": "react-calculator",
"version": "1.0.0",
"description": "A calculator written using React with TypeScript.",
"homepage": "https://smparsons.github.io/react-calculator",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --port 9000 --inline --progress --profile --colors --watch --mode development",
"build": "webpack --config webpack.config.js --mode production",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smparsons/react-calculator.git"
},
"author": "Samuel Parsons",
"license": "ISC",
"bugs": {
"url": "https://github.com/smparsons/react-calculator/issues"
},
"dependencies": {
"bignumber.js": "^9.0.0",
"react": "^16.9.0",
"react-dom": "^16.9.0"
},
"devDependencies": {
"@types/bignumber.js": "^5.0.0",
"@types/node": "^12.7.3",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"awesome-typescript-loader": "^5.2.1",
"css-loader": "^3.2.0",
"gh-pages": "^2.1.1",
"html-webpack-plugin": "^3.2.0",
"source-map-loader": "^0.2.4",
"style-loader": "^1.0.0",
"tslint": "^5.19.0",
"tslint-loader": "^3.5.4",
"tslint-react": "^4.0.0",
"typescript": "^3.6.2",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.8.0"
}
}