-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
111 lines (111 loc) · 3.11 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "comics-reader",
"preferGlobal": true,
"version": "1.0.0",
"author": "Stéphane Goetz <[email protected]>",
"description": "a very simple comics reader",
"contributors": [
{
"name": "Stéphane Goetz",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/onigoetz/Comics-Reader.git"
},
"keywords": [
"comics",
"reader"
],
"license": "MIT",
"homepage": "http://home.onigoetz.ch/BD",
"browserslist": [
">0.3%",
"not ie 11",
"not dead",
"not op_mini all",
"Safari >= 11",
"iOS >= 11",
"Chrome >= 70",
"Firefox >= 60",
"Edge >= 17"
],
"scripts": {
"dev": "node server/index.js",
"test": "ava",
"test:ci": "c8 --clean --all --reporter=text --reporter=lcov --reporter=html --include=server ava",
"build": "next build",
"start": "NODE_ENV=production node server/index.js",
"crafty:build": "crafty run",
"crafty:watch": "crafty watch",
"clear-cache": "rm -rf cache images/cache",
"lint:server": "crafty jsLint server next.config.js --preset recommended --preset node",
"lint:client": "crafty jsLint src --preset recommended",
"lint:css": "crafty cssLint src/**/*.css --preset legacy"
},
"devDependencies": {
"@swissquote/crafty": "1.27.0",
"@swissquote/crafty-preset-eslint": "1.27.0",
"@swissquote/crafty-preset-images-simple": "1.27.0",
"@swissquote/crafty-preset-postcss": "1.27.0",
"@swissquote/crafty-runner-gulp": "1.27.0",
"@types/compression": "^1.0.0",
"@types/express": "^5.0.0",
"@types/morgan": "^1.7.35",
"@types/sharp": "^0.32.0",
"ava": "^6.0.0",
"c8": "^10.0.0"
},
"dependencies": {
"@next/bundle-analyzer": "^15.0.0",
"archive-type": "^4.0.0",
"basic-auth": "^2.0.0",
"bcrypt": "^5.0.0",
"better-sqlite3": "^11.0.0",
"cache-manager": "^6.0.0",
"cache-manager-fs-hash": "^2.0.0",
"classnames": "^2.2.6",
"cli-table": "^0.3.1",
"colorette": "^2.0.20",
"compression": "^1.7.1",
"core-js": "^3.26.0",
"create-symlink": "^1.0.0",
"debounce": "^2.0.0",
"debug": "^4.1.0",
"execa": "^5.0.0",
"express": "^4.16.3",
"iconv": "^3.0.0",
"image-size": "^1.0.0",
"js-cookie": "^3.0.0",
"jwt-simple": "^0.5.1",
"loud-rejection": "^2.1.0",
"meow": "^9.0.0",
"morgan": "^1.9.1",
"natural-sort": "^1.0.0",
"next": "15.1.3",
"next-compose-plugins": "^2.2.0",
"next-cookies": "2.0.3",
"node-cron": "^3.0.0",
"node-unrar-js": "^2.0.0",
"normalize.css": "^8.0.1",
"pdfjs-dist": "^3.0.279",
"percentile": "^1.2.2",
"photoswipe": "^5.0.0",
"promise-timeout": "^1.3.0",
"prompts": "^2.3.0",
"prop-types": "^15.6.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-headroom": "^3.0.0",
"react-icons": "^5.0.0",
"react-portal": "^4.1.5",
"read-chunk": "^3.0.0",
"sharp": "^0.33.0",
"tmp-promise": "^3.0.2",
"typedarray-to-buffer": "^4.0.0",
"unzipper": "^0.12.0",
"web-streams-polyfill": "^4.0.0"
},
"packageManager": "[email protected]"
}