-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·34 lines (34 loc) · 853 Bytes
/
package.json
File metadata and controls
executable file
·34 lines (34 loc) · 853 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
{
"name": "todo-list",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "webpack watch --mode=development",
"build": "webpack --mode=production",
"serve": "webpack serve"
},
"repository": {
"type": "git",
"url": "https://github.com/dumb-programmer/TODO-list.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dumb-programmer/TODO-list/issues"
},
"homepage": "https://github.com/dumb-programmer/TODO-list#readme",
"devDependencies": {
"css-loader": "^6.3.0",
"style-loader": "^3.3.0",
"webpack": "^5.53.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.3.1"
},
"dependencies": {
"firebase": "^9.7.0",
"firebaseui": "^6.0.1"
}
}