-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.5 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.5 KB
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
47
48
{
"name": "calculator",
"version": "1.0.0",
"description": "",
"main": "src/index.tsx",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack-dev-server --config ./config/webpack.config.dev.js --mode development --inline",
"build": "webpack --config ./config/webpack.config.dll.js && webpack --config ./config/webpack.config.prod.js --progress --color"
},
"repository": {
"type": "git",
"url": "git+https://github.com/foolsogood/calculator.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/foolsogood/calculator/issues"
},
"homepage": "https://github.com/foolsogood/calculator#readme",
"dependencies": {
"@types/node": "^14.6.4",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"add-asset-html-webpack-plugin": "^3.1.3",
"awesome-typescript-loader": "^5.2.1",
"babel-core": "^6.26.3",
"babel-loader": "7",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^4.3.0",
"extract-text-webpack-plugin": "^3.0.2",
"html-webpack-plugin": "^4.4.1",
"mini-css-extract-plugin": "^0.11.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"sass": "^1.26.10",
"sass-loader": "^10.0.2",
"typescript": "^3.4.5",
"webpack": "^4.44.1",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.1.3"
}
}