-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 990 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 990 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
35
36
{
"name": "todo-web-components",
"version": "1.0.0",
"description": "ToDo App made with WebComponents",
"private": true,
"scripts": {
"build": "webpack",
"watch": "webpack --watch",
"start:dev": "webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/time2hack/todo-web-components.git"
},
"keywords": [],
"author": "Pankaj Patel (https://pankaj.pro)",
"license": "MIT",
"bugs": {
"url": "https://github.com/time2hack/todo-web-components/issues"
},
"homepage": "https://github.com/time2hack/todo-web-components#readme",
"dependencies": {
"@webcomponents/webcomponentsjs": "^1.3.3"
},
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"babel-loader": "^8.3.0",
"copy-webpack-plugin": "^11.0.0",
"html-webpack-plugin": "^5.5.0",
"raw-loader": "^4.0.2",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
}
}