-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.07 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
{
"name": "express-ts-template",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=production ts-node --transpile-only ./src/index.ts",
"dev": "cross-env NODE_ENV=development ts-node-dev -r tsconfig-paths/register src/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/morgan": "^1.9.5",
"cross-env": "^7.0.3",
"express": "^4.18.2",
"morgan": "^1.10.0",
"signale": "^1.4.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^20.6.2",
"@types/signale": "^1.4.4",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"dotenv": "^16.3.1",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"prettier": "^3.0.3",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0"
}
}