-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.28 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.28 KB
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
44
45
46
47
48
49
50
{
"name": "module31_task-manager-v2",
"version": "1.0.0",
"private": "true",
"description": "Skillfactory educational project. Pure JS Kanban board written with OOP.",
"main": "app.js",
"scripts": {
"start": "webpack serve --mode development --open",
"build": "webpack --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ivan-developer-01/module31_task-manager-v2.git"
},
"keywords": [
"skillfactory",
"js",
"oop"
],
"author": "Ivan",
"license": "ISC",
"bugs": {
"url": "https://github.com/ivan-developer-01/module31_task-manager-v2/issues"
},
"homepage": "https://github.com/ivan-developer-01/module31_task-manager-v2#readme",
"devDependencies": {
"@eslint/js": "^10.0.1",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^14.0.0",
"css-loader": "^5.1.2",
"eslint": "^10.1.0",
"globals": "^17.4.0",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.1",
"style-loader": "^2.0.0",
"webpack": "^5.25.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"@popperjs/core": "^2.9.1",
"bootstrap": "^5.3.8",
"drag-drop-touch": "^1.3.1",
"i18next": "^26.0.3",
"i18next-http-backend": "^3.0.4",
"postcss": "^8.5.8",
"sweetalert2": "^11.26.24",
"uuid": "^3.4.0"
}
}