-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 973 Bytes
/
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
{
"name": "got-my-back",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"start": "node ./dist/app.js",
"dev": "nodemon --watch src --ext ts,json --exec \"node --loader ts-node/esm --experimental-specifier-resolution=node ./src/app.ts\"",
"tsc": "tsc",
"postinstall": "npm run tsc"
},
"dependencies": {
"@types/dotenv": "^8.2.0",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"express": "^4.19.2",
"http-errors": "~1.6.3",
"morgan": "~1.9.1",
"pug": "^3.0.3"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.7",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/morgan": "^1.9.9",
"@types/node": "^20.14.2",
"@types/pug": "^2.0.10",
"@typescript-eslint/parser": "^7.13.0",
"dotenv": "^16.4.5",
"nodemon": "^3.1.3",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.4.5"
}
}