forked from 61040-fa23/node-express-rec-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.12 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
{
"name": "node-express-rec-1",
"main": "dist/src/main.js",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"start": "tsc && node -r source-map-support/register dist/src/main.js",
"lint": "npx eslint . --ext .ts && npx prettier . --check",
"format": "npx eslint . --ext .ts --fix && npx prettier . --write"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.7",
"@types/morgan": "^1.9.4",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"prettier": "^3.0.2",
"source-map-support": "^0.5.21",
"typescript": "^5.1.6"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-session": "^1.17.3",
"mongodb": "^5.7.0",
"morgan": "^1.10.0",
"reflect-metadata": "^0.1.13"
},
"prettier": {
"trailingComma": "all",
"printWidth": 200,
"endOfLine": "auto"
}
}