-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.1 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
{
"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 .",
"prettier": "npx prettier **/*.{js,html,scss} --write \"**/*.{js,html,scss}\"",
"test": "jest",
"test:watch": "jest --watch"
},
"author": "Avcajaraville",
"repository": {
"type" : "git",
"url" : "https://github.com/Avcajaraville/boilerplate"
},
"license": "ISC",
"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",
"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",
"sass": "^1.26.10",
"sass-loader": "^9.0.2",
"webpack": "^4.44.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.0.9"
}
}