-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.33 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
{
"name": "PandaBrowser",
"version": "0.3.5",
"private": true,
"description": "E-Hentai Metadata Archive Database",
"main": "index.js",
"scripts": {
"start": "node index.js",
"app-dev": "node --watch-path app index.js",
"import": "node ./scripts/import.js",
"sync": "node ./scripts/sync.js",
"resync": "node ./scripts/resync.js",
"torrent-import": "node ./scripts/torrent.js",
"torrent-sync": "node ./scripts/torrentsync.js",
"mark-replaced": "node ./scripts/markreplaced.js",
"fetch": "node ./scripts/fetch.js",
"thumbs-phash": "node ./scripts/thumbsphash.js",
"lint": "eslint src/**/*.js app/**/*.js",
"build": "env NODE_ENV=production webpack -p --env.prod --progress",
"dev": "webpack-dev-server --inline -d --watch --hot",
"test": "echo \"Error: no test specified\" && exit 1"
},
"pkg": {
"assets": [
"node_modules/better-sqlite3/build/Release/**",
"node_modules/sharp/build/Release/**",
"node_modules/sharp/vendor/**/lib/*",
"app/assets/*",
"frontend/**/*",
"scripts/*"
]
},
"author": "Uncle Bane / Poontology",
"license": "GPL-3.0",
"dependencies": {
"better-sqlite3": "^11.3.0",
"express": "^4.18.2",
"fast-glob": "^3.3.2",
"multer": "^1.4.5-lts.1",
"mysql": "^2.18.1",
"sharp": "^0.31.3",
"sharp-phash": "^2.1.0",
"tqdm": "^2.0.3"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/plugin-transform-runtime": "^7.22.15",
"@babel/preset-env": "^7.22.20",
"@babel/preset-react": "^7.0.0",
"@types/better-sqlite3": "^7.6.11",
"@types/express": "^5.0.0",
"@types/react": "^18.3.10",
"abortcontroller-polyfill": "^1.3.0",
"babel-loader": "^8.0.6",
"css-loader": "^3.1.0",
"eslint": "^6.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.6.1",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.8.0",
"moment": "^2.29.4",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-hot-loader": "^4.12.10",
"react-router-dom": "^5.0.1",
"style-loader": "^0.23.1",
"webpack": "^4.39.1",
"webpack-bundle-analyzer": "^3.4.1",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.11.0"
},
"optionalDependencies": {
"core-js": "^3.2.0"
}
}