-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.19 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
44
45
46
47
{
"name": "todo-list",
"version": "1.0.0",
"description": "a todo list for the odin project",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"start": "webpack serve --open",
"watch": "webpack --watch",
"deploy-gh": "git push origin :gh-pages && git subtree push --prefix dist origin gh-pages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ishmam156/todo-list.git"
},
"keywords": [
"theodinproject",
"js",
"todolist",
"todo",
"html",
"css"
],
"author": "Ishmam Chowdhury",
"license": "ISC",
"bugs": {
"url": "https://github.com/Ishmam156/todo-list/issues"
},
"homepage": "https://github.com/Ishmam156/todo-list#readme",
"devDependencies": {
"babel-eslint": "^10.1.0",
"css-loader": "^6.2.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"html-webpack-plugin": "^5.3.2",
"mini-css-extract-plugin": "^2.3.0",
"prettier": "^2.4.0",
"webpack": "^5.52.1",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.2.0"
},
"dependencies": {
"date-fns": "^2.23.0"
}
}