-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
35 lines (35 loc) · 990 Bytes
/
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
{
"name": "bun-elysia-boilerplate-by-imjustlucas",
"description": "A boilerplate for ElysiaJS with Bun made by imjustlucas",
"main": "src/index.ts",
"author": {
"name": "Lucas"
},
"version": "1.0.50",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "bun run --watch src/index.ts",
"lint": "eslint --ext .ts src"
},
"dependencies": {
"@elysiajs/cookie": "^0.8.0",
"@elysiajs/cors": "^0.7.1",
"@elysiajs/jwt": "^1.0.2",
"colors": "^1.4.0",
"elysia": "^1.0.13",
"elysia-helmet": "^1.0.1",
"mongoose": "^7.6.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"bun-types": "latest",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"prettier": "^3.0.3"
},
"module": "src/index.js"
}