This repository has been archived by the owner on May 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
106 lines (106 loc) · 2.86 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
{
"name": "e-hentai-view",
"productName": "EhentaiView",
"version": "4.2.0",
"main": "server/src/app.js",
"license": "MIT",
"homepage": "https://exhentai.appspot.com",
"author": {
"name": "kinoko",
"email": "[email protected]",
"url": "https://github.com/IronKinoko"
},
"buildTime": "",
"keywords": [
"exhentai",
"e-hentai",
"react"
],
"repository": {
"url": "https://github.com/IronKinoko/e-hentai-view.git",
"type": "git"
},
"scripts": {
"dev:server": "cross-env NODE_ENV=development nodemon server/src/app.js -w server",
"dev:app": "cross-env NODE_ENV=development node server/src/server.js",
"build": "next build",
"analyze": "cross-env ANALYZE=true next build",
"type:check": "tsc --noEmit",
"start": "NODE_ENV=production node server/src/server.js",
"release": "node scripts/release.js",
"prepare": "husky install"
},
"lint-staged": {
"{pages,public,server,src,script}/**/*.{js,jsx,ts,tsx}": [
"prettier -c -w"
]
},
"devDependencies": {
"@types/file-saver": "^2.0.2",
"@types/lodash": "^4.14.170",
"@types/lodash-es": "^4.17.5",
"@types/node": "^15.6.1",
"@types/nprogress": "^0.2.0",
"@types/qs": "^6.9.6",
"@types/react": "^17.0.8",
"@types/react-dom": "^17.0.5",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.0.0",
"babel-eslint": "^10.0.0",
"eslint": "^7.5.0",
"eslint-config-next": "^12.0.10",
"http-proxy-agent": "^7.0.0",
"https-proxy-agent": "^7.0.0",
"husky": "^8.0.0",
"inquirer": "^8.1.0",
"lint-staged": "^11.0.0",
"nodemon": "^2.0.7",
"prettier": "^2.3.0",
"semver": "^7.3.5",
"typescript": "^4.3.2"
},
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@mui/icons-material": "^5.3.1",
"@mui/material": "^5.4.0",
"@mui/styles": "^5.3.0",
"@next/bundle-analyzer": "^12.0.10",
"ahooks": "^3.1.9",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"clsx": "^1.1.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dayjs": "^1.10.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-list-endpoints": "^5.0.0",
"file-saver": "^2.0.5",
"filesize": "^6.3.0",
"http-proxy-middleware": "^2.0.0",
"jsdom": "^16.6.0",
"jszip": "^3.7.0",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"next": "^12.0.10",
"next-i18next": "^10.2.0",
"next-offline": "^5.0.5",
"node-cache": "^5.1.2",
"nprogress": "^0.2.0",
"qs": "^6.10.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hook-form": "^7.7.0",
"swiper": "^6.6.2",
"swr": "^0.5.6"
},
"prettier": {
"singleQuote": true,
"semi": false,
"trailingComma": "es5",
"arrowParens": "always"
}
}