-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "node-ts-starter-project",
"version": "0.0.1",
"description": "Node+TypeScript Starter Project",
"main": "src/index.js",
"scripts": {
"start": "npm run build:live",
"build": "rm -fr dist/* && tsc -p .",
"build:live": "nodemon -r tsconfig-paths/register --watch 'src/**/*.ts' --exec \"ts-node\" src/index.ts",
"test": "jest",
"test:watch": "jest --watchAll",
"prettier:base": "prettier --parser typescript --single-quote",
"prettier:check": "npm run prettier:base -- --list-different \"src/**/*.{ts,tsx}\"",
"prettier:write": "npm run prettier:base -- --write \"src/**/*.{ts,tsx}\"",
"precommit": "npm run prettier:write",
"lint": "eslint \"src/**\" --fix"
},
"repository": {
"type": "git",
"url": "https://githut.com/pauloklaus/nodets-starter-project"
},
"author": {
"name": "Paulo Sergio Klaus",
"email": "dev@pauloklaus.com.br"
},
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/compression": "^1.7.5",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/helmet": "^4.0.0",
"@types/jest": "^29.5.13",
"@types/nanoid": "^3.0.0",
"@types/node": "^20.16.9",
"@types/pg": "^8.11.10",
"@types/validator": "^13.12.2",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"eslint": "^8.57.1",
"eslint-plugin-jest": "^28.8.3",
"husky": "^9.1.6",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.6.2"
},
"dependencies": {
"@aws-sdk/client-ses": "^3.658.1",
"bcrypt": "^5.1.1",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express": "^4.21.0",
"express-rate-limit": "^7.4.0",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"nanoid": "^5.0.7",
"pg": "^8.13.0",
"validator": "^13.12.0"
}
}