-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.2 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@ansopedia/expressts-readysetgo",
"version": "0.0.6",
"description": "An Express.js and TypeScript boilerplate equipped with ESLint, Prettier, Husky, Jest, and Supertest, ready to kickstart your backend development.",
"main": "index.js",
"type": "commonjs",
"bin": {
"expressts-readysetgo": "./dist/index.js"
},
"workspaces": [
"src/templates/express-typescript/*",
"src/templates/sample-project/*"
],
"scripts": {
"start": "node ./dist/index.js",
"dev": "nodemon",
"build": "tsc && shx rm -rf dist/templates && shx cp -r src/templates dist",
"pretest": "npm run build",
"test": "jest",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sanjaysah101/ExpressTS-ReadySetGo.git"
},
"keywords": [
"Express",
"TypeScript",
"Node",
"Husky",
"Jest",
"Prettier",
"ESLint",
"Boilerplate",
"Backend template",
"Advance Node Express API Start Up File"
],
"author": "sanjay sah",
"license": "MIT",
"bugs": {
"url": "https://github.com/sanjaysah101/ExpressTS-ReadySetGo.git/issues"
},
"homepage": "https://github.com/sanjaysah101/ExpressTS-ReadySetGo.git/blob/main/README.md",
"devDependencies": {
"@types/ejs": "^3.0.2",
"@types/inquirer": "^6.5.0",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.5",
"@types/shelljs": "^0.8.7",
"eslint": "^8.0.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"nodemon": "^3.0.2",
"prettier": "3.1.1",
"shx": "^0.3.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^6.16.0",
"dotenv": "^16.3.1",
"ejs": "^3.0.2",
"inquirer": "^7.1.0",
"shelljs": "^0.8.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,jsx,tsx,md}": [
"prettier --write",
"eslint --fix"
]
}
}