-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.27 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
{
"name": "typescript-node-express-starter",
"version": "1.0.0",
"description": "",
"main": "dist/main.js",
"module": "./dist/main.mjs",
"types": "dist/main.d.ts",
"scripts": {
"dev": "nodemon",
"serve": "ts-node src/main.ts",
"lint": "eslint **/*.ts",
"lint:fix": "eslint --fix **/*.ts",
"format": "npx prettier --write .",
"test": "vitest",
"citest": "vitest run --coverage",
"build": "tsup src/main.ts --format cjs,esm --dts"
},
"author": "",
"license": "MIT",
"dependencies": {
"cors": "^2.8.5",
"dayjs": "^1.11.13",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"@types/cors": "^2.8.17",
"@types/eslint__js": "^8.42.3",
"@types/express": "^4.17.21",
"@types/node": "^22.4.2",
"@types/supertest": "^6.0.2",
"@types/swagger-ui-express": "^4.1.6",
"@vitest/coverage-v8": "^2.0.5",
"eslint": "^9.10.0",
"nodemon": "^3.1.4",
"prettier": "^3.3.3",
"supertest": "^7.0.0",
"ts-node": "^10.9.2",
"tsup": "^8.2.4",
"typescript": "^5.6.2",
"typescript-eslint": "^8.5.0",
"vitest": "^2.0.5"
},
"exports": {
"require": "./dist/main.js",
"import": "./dist/main.mjs"
}
}