-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.46 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
45
46
47
48
49
50
{
"name": "express-api-template",
"version": "1.0.0",
"description": "Boilerplate for express api",
"main": "server.js",
"scripts": {
"build": "rimraf ./dist && tsc -p tsconfig.build.json",
"lint": "eslint --config eslint.config.js",
"lint:fix": "pnpm lint --fix",
"start:dev": "NODE_ENV=local nodemon --watch \"src/**/*.ts\" --exec \"ts-node\" src/server.ts",
"test": "jest",
"test:coverage": "jest --coverage",
"format": "prettier --write 'src/**/*.{js,jsx,ts,tsx}'",
"prettier:fix": "prettier --write ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "1.20.3",
"cors": "2.8.5",
"express": "4.21.2",
"pino-http": "10.3.0"
},
"devDependencies": {
"@jest/types": "^29.6.3",
"@types/body-parser": "1.19.5",
"@types/cors": "2.8.17",
"@types/express": "5.0.0",
"@types/jest": "29.5.14",
"@types/node": "22.10.2",
"@types/supertest": "6.0.2",
"@typescript-eslint/eslint-plugin": "8.18.2",
"@typescript-eslint/parser": "8.18.2",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.7.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "5.2.1",
"jest": "29.7.0",
"nodemon": "3.1.9",
"pino-pretty": "13.0.0",
"prettier": "3.4.2",
"rimraf": "6.0.1",
"supertest": "7.0.0",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.7.2"
}
}