-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.85 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
{
"name": "akigumo",
"version": "0.0.2",
"description": "Picture server for fleet.moe",
"main": "index.js",
"scripts": {
"start": "node start.js",
"start:port": "cross-env AKIGUMO_PORT=8081 node start.js",
"dev": "cross-env NODE_ENV=development pm2 start start.js --watch && pm2 logs",
"test": "jest ./tests/",
"prepare": "husky install",
"up": "npx npm-check-updates -i"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TeamFleet/Akigumo.git"
},
"keywords": [
"node.js",
"koa"
],
"author": "diablohu <[email protected]> (http://diablohu.com)",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/TeamFleet/Akigumo/issues"
},
"homepage": "https://github.com/TeamFleet/Akigumo#readme",
"private": true,
"dependencies": {
"fs-extra": "^11.1.1",
"husky": "^8.0.3",
"koa": "^2.14.2",
"koa-cash": "^4.1.1",
"koa-convert": "^2.0.0",
"koa-helmet": "^7.0.2",
"koa-router": "^12.0.0",
"koa-send": "^5.0.1",
"lru-cache": "^10.0.0",
"sharp": "^0.32.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"axios": "^1.4.0",
"cross-env": "^7.0.3",
"eslint": "^8.44.0",
"eslint-config-koot": "^4.0.0",
"jest": "^29.6.1",
"lint-staged": "^13.2.3",
"pm2": "^5.3.0",
"prettier": "^3.0.0",
"prettier-eslint": "^15.0.1",
"react": "^18.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,cjs,mjs,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,css,less,sass,scss}": [
"prettier --write"
]
}
}