-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1021 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
36
37
38
39
40
41
42
{
"name": "folder-structure-template",
"version": "0.0.1",
"main": "app.ts",
"scripts": {
"dev": "tsx watch src/app.ts",
"start": "node dist/app.js",
"build": "eslint ./src && tsup src",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"style:check": "prettier ./src --check",
"style:format": "prettier ./src --write",
"test": "vitest"
},
"author": "FalaAiMatheus",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.14.0",
"@types/cors": "^2.8.17",
"@types/dotenv": "^8.2.3",
"@types/express": "^5.0.0",
"@types/node": "^22.9.0",
"eslint": "^9.14.0",
"globals": "^15.12.0",
"prettier": "^3.3.3",
"prisma": "^5.22.0",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0",
"vitest": "^2.1.5"
},
"dependencies": {
"@prisma/client": "^5.22.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1"
},
"engines": {
"node": "20"
}
}