-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.64 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "express-typescript-restful-boilerplate",
"description": "Starter kit for building RESTful APIs using Express in a TypeScript environment for Node.js.",
"version": "1.0.0",
"license": "MIT",
"type": "module",
"author": {
"name": "Steve McKeogh",
"email": "[email protected]",
"url": "https://mckeogh.uk"
},
"keywords": [
"express",
"node",
"typescript",
"restful"
],
"engines": {
"node": "^18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thekeogh/express-typescript-restful-boilerplate.git"
},
"bugs": {
"url": "https://github.com/thekeogh/express-typescript-restful-boilerplate/issues"
},
"homepage": "https://github.com/thekeogh/express-typescript-restful-boilerplate#readme",
"scripts": {
"start": "node build/index.js",
"dev": "NODE_ENV=development dotenv-flow -- tsx watch --ignore ./build --no-cache src",
"preview": "NODE_ENV=development dotenv-flow -- npm start",
"build": "rimraf ./build && tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"test": "vitest",
"test:watch": "vitest --watch",
"lint": "npm run eslint && npm run prettier",
"lint:fix": "npm run eslint:fix && npm run prettier:fix",
"prettier": "prettier . --check",
"prettier:fix": "prettier . --write",
"eslint": "eslint --ext=ts src tests --no-error-on-unmatched-pattern --quiet || true",
"eslint:fix": "eslint --ext=ts src tests --no-error-on-unmatched-pattern --quiet --fix || true"
},
"dependencies": {
"@sentry/node": "^7.70.0",
"chalk": "^5.3.0",
"class-validator": "^0.14.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"express-jwt": "^8.4.1",
"glob": "^10.3.5",
"http-errors": "^2.0.0",
"lusca": "^1.7.0",
"pino": "^8.15.1",
"pino-pretty": "^10.2.0",
"strip-ansi": "^7.1.0"
},
"devDependencies": {
"@faker-js/faker": "^8.1.0",
"@types/cors": "^2.8.14",
"@types/dotenv-flow": "^3.3.1",
"@types/express": "^4.17.17",
"@types/glob": "^8.1.0",
"@types/lusca": "^1.7.2",
"@types/morgan": "^1.9.5",
"@types/node": "^20.6.3",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"dotenv-flow": "^3.3.0",
"dotenv-flow-cli": "^1.0.0",
"eslint": "^8.49.0",
"eslint-plugin-import": "^2.28.1",
"morgan": "^1.10.0",
"prettier": "^3.0.3",
"rimraf": "^5.0.1",
"tsc-alias": "^1.8.8",
"tslib": "^2.6.2",
"tsx": "^3.12.10",
"typescript": "^5.2.2",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "^0.34.5",
"vitest-mock-extended": "^1.2.1"
}
}