-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.55 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "flip-book",
"version": "2.1.0",
"description": "An interactive flip book",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"eslint": "eslint .",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"test": "vitest run",
"coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/caleb531/flip-book.git"
},
"author": "Caleb Evans",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/caleb531/flip-book/issues"
},
"homepage": "https://gitlab.com/caleb531/flip-book#README",
"dependencies": {
"@fontsource/roboto-slab": "^5.0.21",
"clsx": "^2.1.1",
"fastclick": "^1.0.6",
"gif.js.optimized": "^1.0.1",
"mithril": "^2.2.2",
"underscore": "^1.13.7",
"vite-plugin-pwa": "^0.20.2",
"workbox-window": "^7.1.0"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@testing-library/jest-dom": "^6.5.0",
"@types/eslint-config-prettier": "^6.11.3",
"@types/eslint__js": "^8.42.3",
"@types/mithril": "^2.2.7",
"@types/node": "^20.16.2",
"@vitest/coverage-v8": "^2.0.5",
"@vitest/eslint-plugin": "^1.1.0",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.1",
"globals": "^15.9.0",
"idb-keyval": "^6.2.1",
"jsdom": "^24.1.3",
"prettier": "^3.3.3",
"sass": "^1.77.8",
"vite": "^5.4.2",
"vitest": "^2.0.5",
"workbox-build": "^7.1.1"
}
}