-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 983 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
{
"name": "todo-list",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"serve": "webpack serve",
"build-dev": "webpack --mode development",
"build-prod": "webpack --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/charlie-daniels/todo-list.git"
},
"keywords": [
"todo-list"
],
"author": "charlie-daniels",
"license": "MIT",
"bugs": {
"url": "https://github.com/charlie-daniels/todo-list/issues"
},
"homepage": "https://github.com/charlie-daniels/todo-list#readme",
"devDependencies": {
"css": "^3.0.0",
"css-loader": "^6.8.1",
"eslint": "^8.41.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"html-webpack-plugin": "^5.5.1",
"style-loader": "^3.3.3",
"webpack": "^5.84.1",
"webpack-cli": "^5.1.1",
"webpack-dev-server": "^4.15.0"
}
}