-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 950 Bytes
/
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
{
"name": "todo_list",
"version": "1.0.0",
"description": "A todo app",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"watch": "webpack --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ClintonEnyinna/todo_list.git"
},
"keywords": [
"todo"
],
"author": "Clinton Enyinna",
"license": "MIT",
"bugs": {
"url": "https://github.com/ClintonEnyinna/todo_list/issues"
},
"homepage": "https://github.com/ClintonEnyinna/todo_list#readme",
"devDependencies": {
"css-loader": "^3.5.3",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"file-loader": "^6.0.0",
"style-loader": "^1.2.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.13.0",
"flatpickr": "^4.6.3"
}
}