-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.53 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
51
52
53
54
55
{
"name": "book-tracker-js",
"version": "2.0.0",
"description": "A modular, fully tested Single Page Application (SPA) built with Vanilla JavaScript. This Book Tracker allows users to manage, add, and remove books, featuring localStorage persistence, custom animations, and a real DOM-based test suite with Vitest + jsdom.",
"main": "index.js",
"type": "module",
"scripts": {
"build": "webpack",
"start": "webpack server --mode development",
"test": "vitest",
"test:coverage": "vitest --coverage",
"deploy": "webpack && gh-pages -d build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/umarSiddique010/book-tracker-js.git"
},
"keywords": [
"book-tracker",
"vanilla-js",
"javascript",
"webpack",
"spa",
"vitest",
"jsdom",
"localstorage",
"frontend-project",
"oop",
"modular-js",
"gh-pages"
],
"author": "Md Umar Siddique",
"license": "ISC",
"bugs": {
"url": "https://github.com/umarSiddique010/book-tracker-js/issues"
},
"homepage": "https://umarSiddique010.github.io/book-tracker-js",
"dependencies": {
"@testing-library/dom": "^10.4.0",
"css-loader": "^7.1.2",
"html-webpack-plugin": "^5.6.3",
"style-loader": "^4.0.0",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.0.18",
"c8": "^11.0.0",
"copy-webpack-plugin": "^14.0.0",
"gh-pages": "^6.3.0",
"jsdom": "^26.1.0",
"vitest": "^4.0.18",
"webpack-dev-server": "^5.2.0"
}
}