-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.25 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
{
"name": "calculator-demo",
"version": "1.0.0",
"description": "Simple calculator demo",
"main": "index.js",
"scripts": {
"build": "npx webpack --config webpack.config.prod.js",
"dev": "npx webpack-dev-server --config webpack.config.dev.js",
"lint": "npx eslint .",
"postinstall": "npm run test && npm run build",
"prettier": "npx prettier **/*.{js,html,scss} --write \"**/*.{js,html,scss}\"",
"test": "jest",
"test:watch": "jest --watch"
},
"author": "Avcajaraville",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/Avcajaraville/basic-calculator"
},
"dependencies": {
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"babel-jest": "^26.1.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^4.0.0",
"eslint": "^7.5.0",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"jest": "^26.1.0",
"mini-css-extract-plugin": "^0.9.0",
"normalize.css": "^8.0.1",
"prettier": "^1.19.1",
"resolve-url-loader": "^3.1.1",
"sass": "^1.26.10",
"sass-loader": "^9.0.2",
"url-loader": "^4.1.0",
"webpack": "^4.44.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.0.9"
}
}