forked from skyra-project/haste-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.71 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
{
"name": "@skyra/haste-server",
"version": "1.0.0",
"description": "Private Haste Server",
"private": true,
"main": "dist/backend/server.js",
"type": "module",
"scripts": {
"start": "node .",
"dev": "yarn build && conc -n \"frontend,backend\" -c \"bgBlue,bgGreen\" \"yarn build:frontend --watch --clearScreen=false\" \"yarn dev:backend\"",
"dev:backend": "tsup --watch --silent --onSuccess 'sleep 2 && node .'",
"build": "conc -c \"bgBlue,bgGreen\" \"yarn:build:*\"",
"build:frontend": "vite build",
"build:backend": "tsup",
"clean": "rimraf dist data",
"lint": "eslint src --fix --ext ts",
"format": "prettier --write src"
},
"dependencies": {
"@fastify/rate-limit": "^10.1.1",
"@fastify/sensible": "^6.0.1",
"@fastify/static": "^8.0.2",
"@fastify/swagger": "^9.2.0",
"@fastify/swagger-ui": "^5.1.0",
"@fastify/type-provider-typebox": "^5.0.1",
"@pnotify/core": "^5.2.0",
"@sapphire/fetch": "^3.0.5",
"@sinclair/typebox": "^0.33.21",
"@skyra/env-utilities": "^1.3.0",
"fastify": "^5.1.0",
"highlight.js": "^11.10.0",
"ioredis": "^5.4.1"
},
"devDependencies": {
"@sapphire/eslint-config": "^5.0.5",
"@sapphire/prettier-config": "^2.0.0",
"@sapphire/ts-config": "^5.0.1",
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"autoprefixer": "^10.4.20",
"concurrently": "^9.1.0",
"esbuild-plugin-version-injector": "^1.2.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"vite": "^5.4.10"
},
"eslintConfig": {
"extends": "@sapphire"
},
"packageManager": "[email protected]"
}