-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.16 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
{
"name": "express-ts-api-boilerplate",
"version": "0.1.0",
"description": "express typescript api boilerplate",
"main": "src/app.ts",
"scripts": {
"build": "npx tsc",
"start": "node ./dist/app.js",
"dev": "nodemon src/app.ts",
"lint": "eslint --ext .ts,.js",
"lint:fix": "eslint --ext .ts,.js --fix",
"test": "jest"
},
"author": "Gianluca Zicca",
"license": "MIT",
"dependencies": {
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.19.2",
"morgan": "^1.10.0",
"nodemon": "^3.0.1",
"winston": "^3.9.0"
},
"devDependencies": {
"@eslint/js": "^9.6.0",
"@stylistic/eslint-plugin-js": "^2.3.0",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/morgan": "^1.9.4",
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"eslint": "^9.6.0",
"globals": "^15.8.0",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.3",
"typescript-eslint": "^7.15.0"
}
}