-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 943 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
{
"name": "todo",
"version": "1.0.0",
"description": "A todo webapp to practice what i've learned so far while keeping in mind that i follow solid principles",
"main": "index.js",
"scripts": {
"test": "console.log(\"It's working\")",
"build": "webpack --config webpack.prod.js",
"dev": "webpack serve --config webpack.dev.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devnchill/todo.git"
},
"author": "MONK",
"license": "ISC",
"bugs": {
"url": "https://github.com/devnchill/todo/issues"
},
"homepage": "https://github.com/devnchill/todo#readme",
"devDependencies": {
"css-loader": "^7.1.2",
"html-loader": "^5.1.0",
"html-webpack-plugin": "^5.6.3",
"style-loader": "^4.0.0",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0",
"webpack-merge": "^6.0.1"
},
"dependencies": {
"date-fns": "^4.1.0"
}
}