-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.13 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
{
"name": "ts-express-template",
"version": "1.0.0",
"description": "",
"type": "module",
"module": "src/index.ts",
"scripts": {
"dev": "nodemon src/index.ts",
"test": "vitest run --coverage",
"build": "tsc && rm -rf dist && esbuild src/index.ts --bundle --minify --platform=node --target=es2020 --outfile=dist/index.js"
},
"author": {
"name": "claypigeon123",
"email": "n.zoltan18@gmail.com",
"url": "https://github.com/claypigeon123"
},
"license": "MIT",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.3",
"helmet": "^7.1.0",
"winston": "^3.12.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.11.29",
"@types/nodemon": "^1.19.6",
"@types/supertest": "^6.0.2",
"@vitest/coverage-v8": "^1.4.0",
"esbuild": "^0.20.2",
"nodemon": "^3.1.0",
"supertest": "^6.3.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.2",
"vitest": "^1.4.0"
}
}