-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
65 lines (65 loc) · 1.73 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "node-template-server",
"version": "1.0.0",
"description": "Boilerplate Node projects with Express, Typescript and clean architecture",
"main": "index.js",
"engines": {
"node": ">=20.12.0",
"yarn": ">=1.22.19",
"npm": "please-use-yarn"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage",
"dev": "ts-node-dev --respawn --clear --transpile-only --ignore-watch node_modules ./src/app.ts",
"build": "yarn test && rimraf ./dist && tsc",
"start": "node dist/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/baguilar6174/node-template-server.git"
},
"keywords": [
"API",
"REST",
"Express",
"Node",
"Clean Architecture"
],
"author": "Bryan Aguilar",
"license": "ISC",
"bugs": {
"url": "https://github.com/baguilar6174/node-template-server/issues"
},
"homepage": "https://github.com/baguilar6174/node-template-server#readme",
"devDependencies": {
"@types/compression": "^1.7.5",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.2",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.0.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"supertest": "^7.0.0",
"ts-jest": "^29.1.2",
"ts-node-dev": "^2.0.0",
"typescript": "*"
},
"dependencies": {
"compression": "^1.7.4",
"dotenv": "^16.4.5",
"env-var": "^7.4.1",
"express": "^4.19.2",
"express-rate-limit": "^7.2.0"
}
}