-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.17 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.17 KB
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": "node-express-typescript-starter",
"version": "0.1.0",
"description": "A starter Node.js API server using Express, with Docker, Jest, and ESLint. All in Typescript",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "npm run build && concurrently -k \"tsc -w\" \"nodemon dist/index.js\"",
"build": "npm run lint && tsc",
"lint": "eslint '**/*.ts'",
"test": "npm run build && jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.5.1",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.35",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"concurrently": "^7.2.1",
"eslint": "^8.16.0",
"jest": "^28.1.0",
"nodemon": "^2.0.16",
"supertest": "^6.2.3",
"ts-jest": "^28.0.3",
"ts-node": "^10.8.0",
"typescript": "^4.6.4"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"helmet": "^5.1.0",
"morgan": "^1.10.0",
"winston": "^3.7.2"
}
}