-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 3.37 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 3.37 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
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "comics-reader",
"preferGlobal": true,
"version": "1.0.0",
"author": "Stéphane Goetz <stephane.goetz@onigoetz.ch>",
"description": "a very simple comics reader",
"contributors": [
{
"name": "Stéphane Goetz",
"email": "stephane.goetz@onigoetz.ch"
}
],
"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.mjs --preset recommended --preset node",
"lint:client": "crafty jsLint src --preset recommended",
"lint:css": "crafty cssLint src/**/*.css --preset legacy"
},
"devDependencies": {
"@swissquote/crafty": "1.28.1",
"@swissquote/crafty-preset-eslint": "1.28.1",
"@swissquote/crafty-preset-images-simple": "1.28.1",
"@swissquote/crafty-preset-postcss": "1.28.1",
"@swissquote/crafty-runner-gulp": "1.28.1",
"@types/compression": "^1.0.0",
"@types/express": "^5.0.0",
"@types/morgan": "^1.7.35",
"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": "^6.0.0",
"better-sqlite3": "^12.0.0",
"body-parser": "^2.2.0",
"cache-manager": "^7.2.0",
"cache-manager-fs-hash": "^3.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": "^9.6.0",
"express": "^5.0.0",
"iconv": "^3.0.0",
"image-size": "^2.0.0",
"js-cookie": "^3.0.0",
"jwt-simple": "^0.5.1",
"loud-rejection": "^2.1.0",
"meow": "^13.0.0",
"morgan": "^1.9.1",
"natural-sort": "^1.0.0",
"next": "15.5.15",
"next-compose-plugins": "^2.2.0",
"next-cookies": "2.0.3",
"node-cron": "^4.0.0",
"node-unrar-js": "^2.0.0",
"normalize.css": "^8.0.1",
"pdfjs-dist": "^5.0.0",
"percentile": "^1.2.2",
"photoswipe": "^5.0.0",
"promise-timeout": "^1.3.0",
"prompts": "^2.3.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": "^5.0.0",
"sharp": "^0.34.0",
"tmp-promise": "^3.0.2",
"typedarray-to-buffer": "^4.0.0",
"unzipper": "^0.12.0",
"web-streams-polyfill": "^4.0.0"
},
"dependenciesMeta": {
"bcrypt": {
"built": true
},
"better-sqlite3": {
"built": true
},
"core-js": {
"built": false
},
"iconv": {
"built": true
},
"sharp": {
"built": true
},
"unrs-resolver": {
"built": true
}
},
"packageManager": "yarn@4.14.1"
}