-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 728 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 728 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
{
"name": "odin-todo-list",
"version": "1.0.0",
"description": "A todo list made for the odin project",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "webpack --watch",
"githost": "git push origin :gh-pages && git subtree push --prefix dist origin gh-pages"
},
"keywords": [
"odin",
"todo",
"list"
],
"author": "Anton Harbers",
"license": "ISC",
"homepage": "https://github.com/AntonHarbers/Odin-Todo-List.git",
"devDependencies": {
"css-loader": "^6.8.1",
"style-loader": "^3.3.3",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"date-fns": "^2.30.0",
"drag-drop": "^7.2.0"
}
}