-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.75 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
{
"name": "express-typescript-boilerplate",
"version": "1.0.0",
"description": "Express JS with Typescript Boilerplate crafted for speed up your development",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"tsup": {
"entry": [
"src/index.ts"
]
},
"exports": {
"default": "./dist/index.js",
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"node": "./dist/index.cjs"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"scripts": {
"start": "node dist/index.mjs",
"dev": "tsup src/index.ts --format esm --watch --onSuccess \"node dist/index.mjs\"",
"build": "tsup src/index.ts --format esm --dts --minify --clean --sourcemap",
"lint": "eslint . --ext .ts"
},
"keywords": [],
"author": "Aung Myat Moe",
"license": "MIT",
"dependencies": {
"@types/cors": "^2.8.13",
"@types/dotenv": "^8.2.0",
"@types/helmet": "^4.0.0",
"@types/morgan": "^1.9.4",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"helmet": "^7.0.0",
"morgan": "^1.10.0",
"tsup": "^6.5.0"
},
"devDependencies": {
"@types/express": "^4.17.15",
"@types/express-serve-static-core": "^4.17.41",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint": "^8.44.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"prettier": "3.1.0",
"typescript": "^4.9.4"
}
}