-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.91 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": "nodejs-typescript-boilerplate",
"version": "1.0.0",
"description": "This repo provides a starting point for developing Node.js applications using TypeScript. It includes a basic project structure with pre-configured tools and settings to facilitate rapid application development. The boilerplate includes common features such as express server setup, routing, environment configuration, logging, testing, and debugging. It is a useful resource for developers who want to get started quickly with building Node.js applications using TypeScript.",
"main": "src/index.ts",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"test": "cross-env NODE_ENV=test jest --forceExit --runInBand --config=jest.config.js",
"build": "tsc -p ."
},
"repository": {
"type": "git",
"url": "https://github.com/davydocsurg/nodejs-typescript-boilerplate"
},
"keywords": [
"typescript",
"javascript",
"nodejs",
"docker"
],
"author": "davydocsurg",
"license": "ISC",
"dependencies": {
"chalk": "^4.1.2",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-validator": "^6.14.2",
"mongoose": "^6.7.0",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.4"
},
"devDependencies": {
"@babel/preset-env": "^7.21.4",
"@babel/preset-typescript": "^7.21.4",
"@types/connect-mongo": "^3.1.3",
"@types/connect-mongodb-session": "^2.4.4",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.14",
"@types/express-validator": "^3.0.0",
"@types/jest": "^29.5.1",
"@types/node": "^18.11.5",
"jest": "^29.5.0",
"ts-jest": "^29.1.0"
}
}