-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.56 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
{
"name": "express-ts-init",
"version": "1.2.0",
"description": "express-ts-init is a repository that serves as a foundational boilerplate for building web applications using the Express.js framework and TypeScript.",
"license": "MIT",
"private": false,
"main": "src/index.ts",
"type": "commonjs",
"scripts": {
"dev": "tsc --project './tsconfig.json' --watch &NODE_ENV=development nodemon ./dist/index.js",
"build": "tsc --project './tsconfig.json'",
"start": "pnpm run build && NODE_ENV=production node ./dist/index.js",
"watch": "tsc --project './tsconfig.json' --watch",
"lint": "eslint src/**/*.{ts,css,js,html}",
"lint:fix": "eslint --fix --ext src/**/*.ts",
"code:format": "prettier --write src/**/*.ts",
"code:check": "prettier --check src/**/*.ts",
"code:format:specific-file": "prettier --write ",
"test": "jest",
"prepare": "husky install"
},
"keywords": [],
"author": "mikah13",
"imports": {
"@/*": "./src/*"
},
"dependencies": {
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"eslint": "^8.52.0",
"express": "^4.18.2",
"helmet": "^7.0.0",
"pg": "^8.11.3",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.3.17",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/compression": "^1.7.4",
"@types/cors": "^2.8.15",
"@types/express": "^4.17.20",
"husky": "^8.0.3",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"prettier-eslint": "^16.1.2",
"supertest": "^6.3.3",
"typescript": "^5.2.2"
}
}