-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
115 lines (115 loc) · 3.66 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
112
113
114
115
{
"name": "whocallsthefleet-yuubari",
"version": "1.0.0",
"description": "Yuubari (Dev) Channel for Who Calls the Fleet (https://yuubari.fleet.moe)",
"author": {
"name": "Diablohu",
"email": "[email protected]",
"url": "http://diablohu.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TeamFleet/WhoCallsTheFleet-Yuubari"
},
"scripts": {
"start": "node ./scripts/start.js",
"start:local": "npm run build && cross-env YUUBARI_LOCAL_RUN=true node --inspect dist-webapp/server/index.js",
"quickstart": "cross-env YUUBARI_LOCAL_RUN=true koot-start -- quickStart=true -- quickStartAllLocales=true",
"build": "koot-build",
"build:client": "koot-build --client",
"build:server": "koot-build --server",
"dev": "koot-dev",
"dev:custom": "node ./scripts/dev.js",
"dev:server": "koot-dev -s",
"analyze": "koot-analyze",
"deploy": "node ./scripts/deploy.js",
"test:server": "npm run build:server && npm run start:server",
"test:server:port": "cross-env SERVER_PORT=4000 koot-start --no-build",
"eslint": "eslint \"!(node_modules|logs|dist|dist*)/**/*.+(js|jsx)\"",
"prepare": "husky install",
"up": "npx npm-check-updates -i"
},
"dependencies": {
"assert": "^2.1.0",
"bind-event": "^1.1.2",
"camelcase": "^6.3.0",
"check-css-prop": "^1.0.3",
"classnames": "^2.5.1",
"hotkeys-js": "^3.13.7",
"kckit": "^1.87.0",
"koot": "^0.15.15",
"localforage": "^1.10.0",
"lz-string": "^1.5.0",
"md5-file": "^5.0.0",
"metas": "^1.1.0",
"qs": "^6.12.0",
"react-markdown": "^7.1.2",
"react-transition-group": "^4.4.5",
"swiper": "^7.4.1",
"whocallsthefleet-backgrounds": "^1.3.2",
"whocallsthefleet-database": "^20240308.0.1"
},
"devDependencies": {
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@types/md5": "^2.3.5",
"autoprefixer": "^10.4.18",
"cache-loader": "^4.1.0",
"cli-spinners": "^2.9.2",
"cross-env": "^7.0.3",
"css-loader": "^6.10.0",
"cssnano": "^5.1.15",
"eslint": "^8.57.0",
"eslint-config-koot": "^4.0.0",
"glob-promise": "^4.2.2",
"husky": "^9.0.11",
"image-size": "^1.1.1",
"jest": "^29.7.0",
"json-pretty": "^0.0.1",
"jsonfile": "^6.1.0",
"less-loader": "^11.1.3",
"lint-staged": "^15.2.2",
"nedb-promise": "^2.0.1",
"node-notifier": "^10.0.1",
"normalize.css": "^8.0.1",
"ora": "^5.4.1",
"path-browserify": "^1.0.1",
"postcss-easing-gradients": "^3.0.1",
"postcss-pxtorem": "^6.1.0",
"prettier": "^3.2.5",
"prettier-eslint": "^16.3.0",
"progress": "^2.0.3",
"raw-loader": "^4.0.2",
"simple-git": "^3.22.0",
"svg-url-loader": "^7.1.1",
"url-loader": "^4.1.1",
"util": "^0.12.5"
},
"overrides": {
"webpack": ">=5"
},
"engines": {
"node": ">=8.0.0"
},
"eslintIgnore": [
"node_modules/**/*"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,cjs,mjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,css,less,sass,scss}": [
"prettier --write"
]
},
"koot": {
"version": "0.15.15"
}
}