-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.05 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
{
"name": "community-cares-server",
"version": "1.0.0",
"description": "Server for the Community Cares application",
"main": "index.ts",
"scripts": {
"start": "tsx src/app.ts",
"start:dev": "tsx watch src/index.ts",
"test": "vitest run",
"coverage": "vitest run --coverage",
"lint": "npx eslint src/**/*.ts",
"pretty": "prettier --write 'src/**/*.ts'",
"prepare": "husky"
},
"author": "Matheus Souza",
"license": "MIT",
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.11.19",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"prettier": "3.2.5",
"ts-node": "^10.9.2",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"vitest": "^1.3.1"
},
"dependencies": {
"axios": "^1.6.7",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"serverless-http": "^3.2.0"
}
}