-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1004 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1004 Bytes
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
{
"name": "todolist-webpack",
"version": "1.0.0",
"description": "installing webpack",
"private": true,
"scripts": {
"dev": "webpack --mode development",
"build": "webpack --mode production",
"start": "webpack serve --open --mode development",
"deploy": "gh-pages -d dist",
"test": "jest --coverage"
},
"keywords": [],
"author": "Larry Villegas <larry_villegas@gmail.com>",
"license": "MIT",
"homepage": "https://larryivc.github.io/ToDoList-webpack",
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"babel-jest": "^29.5.0",
"css-loader": "^6.7.3",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-localstorage-mock": "^2.4.26",
"style-loader": "^3.3.2",
"webpack": "^5.78.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.2"
},
"dependencies": {
"gh-pages": "^5.0.0",
"lodash": "^4.17.21"
},
"main": "index.js"
}