-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.39 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.39 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "generic-api",
"version": "0.0.1",
"description": "A guide to REST API using Typescript created for Toptal blog",
"main": "index.js",
"engines": {
"node": ">=24.6.0",
"npm": ">=11.5.1"
},
"scripts": {
"watch": "nodemon",
"watch:ts-node": "ts-node-dev --respawn --transpile-only --ignore-watch node_modules app.ts",
"watch:legacy": "ts-node-dev --respawn app.ts",
"watch:simple": "tsc --watch",
"start": "ts-node --transpile-only app.ts",
"build": "tsc -p .",
"clean": "tsc --build --clean",
"start:prod": "node dist/app.js",
"debug": "export DEBUG=* && npm start",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write \"**/*.{ts,js,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,js,json,md}\"",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/makinhs/toptal-rest-series.git"
},
"keywords": [
"REST",
"API",
"ExpressJS",
"NodeJS",
"Toptal"
],
"author": "Marcos Silva",
"license": "MIT",
"bugs": {
"url": "https://github.com/makinhs/toptal-rest-series/issues"
},
"homepage": "https://github.com/makinhs/toptal-rest-series#readme",
"dependencies": {
"argon2": "^0.44.0",
"aws-lambda": "^1.0.7",
"axios": "^1.11.0",
"cors": "^2.8.5",
"debug": "^4.4.1",
"dotenv": "^17.2.1",
"express": "^5.1.0",
"express-winston": "^4.2.0",
"mongoose": "^8.17.1",
"multer": "^2.0.2",
"serverless-http": "^3.2.0",
"serverless-offline": "^14.4.0",
"shortid": "^2.2.17",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"winston": "^3.17.0"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/debug": "^4.1.12",
"@types/express": "^5.0.3",
"@types/shortid": "^2.2.0",
"@typescript-eslint/eslint-plugin": "^8.40.0",
"@typescript-eslint/parser": "^8.40.0",
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"husky": "^9.1.7",
"lint-staged": "^16.1.5",
"nodemon": "^3.1.10",
"prettier": "^3.6.2",
"source-map-support": "^0.5.21",
"typescript": "^5.9.2"
},
"lint-staged": {
"*.{ts,js}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
}
}