-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.25 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
{
"name": "todo-list",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack serve --open --mode=development",
"build": "webpack --mode=production",
"deploy": "npm run build && gh-pages -d dist",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier . --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kapaha/todo-list.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/kapaha/todo-list/issues"
},
"homepage": "https://github.com/kapaha/todo-list#readme",
"devDependencies": {
"css-loader": "^6.7.1",
"eslint": "^8.19.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.26.0",
"gh-pages": "^4.0.0",
"html-loader": "^3.1.2",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.1",
"prettier": "^2.7.1",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
},
"dependencies": {
"date-fns": "^2.28.0",
"uuid": "^8.3.2"
}
}