-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.78 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
{
"name": "waifuland_api",
"version": "1.0.0",
"author": "jd-apprentice",
"license": "MIT",
"main": "dist/waifuland",
"type": "module",
"scripts": {
"prebuild": "rm -rf dist",
"build": "bun build src/app/index.ts --compile --target=bun-linux-x64 --minify --outfile dist/waifuland",
"build:arm": "bun build src/app/index.ts --compile --target=bun-linux-arm64 --outfile dist/waifuland",
"dev": "NODE_ENV=development bun --watch src/app/index.ts",
"docs": "esdoc",
"start": "NODE_ENV=production bun dist/waifuland",
"lint": "eslint ./src/**/*.ts",
"lint:fix": "eslint ./src/**/*.ts --fix",
"format": "prettier --check ./src/**/*.ts",
"format:fix": "prettier --write ./src/**/*.ts",
"husky": "husky",
"test": "bun test --coverage"
},
"dependencies": {
"@hapi/boom": "^10.0.1",
"bcrypt": "^5.1.1",
"cloudinary": "^2.4.0",
"cors": "^2.8.5",
"express": "^4.19.2",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"jwt-decode": "^3.1.2",
"mongodb": "^6.8.1",
"mongoose": "^8.6.1",
"multer": "^1.4.4",
"multer-storage-cloudinary": "^4.0.0",
"rollbar": "^2.26.4"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/bun": "^1.1.8",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^8.5.9",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.12",
"@types/supertest": "^6.0.2",
"aws-sdk": "^2.1691.0",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "9.x",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-security": "^3.0.1",
"husky": "^9.1.5",
"mock-aws-s3": "^4.0.2",
"nock": "^13.5.5",
"prettier": "^3.3.3",
"supertest": "^6.3.4"
}
}