-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 1.71 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": "typescript-node-starter",
"version": "1.0.0",
"description": "Typescript Node Starter",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "nodemon src/index.ts",
"build": "tsc -p .",
"prepare": "husky",
"format": "prettier --write src/**/*.{js,jsx,ts,tsx}",
"lint": "eslint ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nirnejak/typescript-node-starter.git"
},
"keywords": [
"Typescript",
"Node",
"Fastify"
],
"author": "Jitendra Nirnejak",
"license": "MIT",
"bugs": {
"url": "https://github.com/nirnejak/typescript-node-starter/issues"
},
"homepage": "https://github.com/nirnejak/typescript-node-starter#readme",
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/heapdump": "^0.3.4",
"@types/node": "^22.9.3",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-n": "^17.14.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-security": "^3.0.1",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"nodemon": "^3.1.4",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"dependencies": {
"@fastify/helmet": "^12.0.1",
"colorette": "^2.0.20",
"cors": "^2.8.5",
"date-fns": "^4.1.0",
"dotenv": "^16.4.5",
"fastify": "^5.1.0"
},
"lint-staged": {
"*.{js,ts}": "eslint"
},
"volta": {
"node": "20.18.0"
}
}