-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.08 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
{
"name": "typescript-express-boilerplate",
"version": "1.0.0",
"description": "",
"main": "dist/server.js",
"type": "module",
"scripts": {
"test": "npx jest",
"test:watch": "npx jest --watch",
"build": "npx tsc",
"start": "node dist/server.js",
"dev": "npx nodemon",
"format:check": "npx prettier . --check",
"format:fix": "npx prettier . --write",
"lint": "npx eslint src/",
"lint:fix": "npx eslint --fix src/"
},
"keywords": [],
"author": "Anh Tung Bui <abui.dev>",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.9.0",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^22.2.0",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"eslint": "^9.9.0",
"globals": "^15.9.0",
"jest": "^29.7.0",
"nodemon": "^3.1.4",
"prettier": "^3.3.3",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.1"
},
"dependencies": {
"dotenv": "^16.4.5",
"express": "^4.19.2"
}
}