-
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) · 1021 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1021 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": "todo-list-project",
"version": "1.0.0",
"description": "this is a simple todo list application using webpack and it is being served by webpack dev server",
"private": true,
"scripts": {
"test": "jest --coverage --testPathPattern=__tests__/",
"build": "webpack",
"start": "webpack serve --open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mmsesay/todo-list.git"
},
"keywords": [],
"author": "Muhammad Mustapha Sesay",
"license": "ISC",
"bugs": {
"url": "https://github.com/mmsesay/todo-list/issues"
},
"homepage": "https://github.com/mmsesay/todo-list#readme",
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.15.4",
"babel-eslint": "^10.1.0",
"css-loader": "^6.3.0",
"html-webpack-plugin": "^5.3.2",
"jest": "^27.2.3",
"style-loader": "^3.2.1",
"webpack": "^5.53.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.2.1"
},
"dependencies": {
"lodash": "^4.17.21"
}
}