-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.8 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
{
"name": "Project-be",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"target": "es2022",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start-nodemon": "nodemon index.ts",
"start-tsx": "tsx watch index.ts",
"prepare": "husky",
"generate": "drizzle-kit generate:pg",
"migrate": " tsx -r dotenv/config migrate.ts"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix --ext .ts,.tsx,.js,.jsx"
],
"*{js,jsx,ts,tsx,json,cjs,mjs,md}": [
"prettier --write"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/static": "^7.0.1",
"@neondatabase/serverless": "^0.9.0",
"bcrypt": "^5.1.1",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.29.4",
"fastify": "^4.26.1",
"fastify-plugin": "^4.5.1",
"he": "^1.2.0",
"postgres": "^3.4.3"
},
"devDependencies": {
"@commitlint/config-conventional": "^19.0.0",
"@fastify/autoload": "^5.8.0",
"@fastify/cookie": "^9.3.1",
"@fastify/cors": "^9.0.1",
"@fastify/env": "^4.3.0",
"@fastify/jwt": "^8.0.0",
"@fastify/sensible": "^5.5.0",
"@fastify/swagger": "^8.14.0",
"@fastify/type-provider-typebox": "^4.0.0",
"@types/bcrypt": "^5.0.2",
"@types/he": "^1.2.3",
"@types/node": "^20.11.21",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"drizzle-kit": "^0.20.14",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"fastify-tsconfig": "^2.0.0",
"husky": "^9.0.11",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"tap": "^18.7.0",
"ts-node": "^10.9.2",
"tsx": "^4.7.1",
"typescript": "^5.3.3"
}
}