-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.85 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.85 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
{
"name": "@t34-dev/node-ts-starter",
"version": "1.1.2",
"description": "A comprehensive TypeScript Node.js starter project with essential tools and configurations",
"type": "module",
"main": "dist/index.js",
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"prepare": "husky",
"clean": "shx rm -rf node_modules pnpm-lock.yaml",
"rmdist": "shx rm -rf dist",
"build": "rollup -c",
"dev": "rollup -c -w",
"serve": "node dist/index.js",
"version-up": "node scripts/version.js",
"test": "vitest",
"lint": "eslint .",
"format": "prettier --write .",
"check": "npm run lint && prettier --check .",
"pre-commit": "npm run format && npm run check"
},
"keywords": [
"starter",
"node",
"typescript"
],
"engines": {
"node": ">= 20 < 21"
},
"author": "Vitalii Rozhkov <t34.dev@gmail.com>",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/t34-dev/node-ts-starter.git"
},
"bugs": {
"url": "https://github.com/t34-dev/node-ts-starter/issues"
},
"homepage": "https://github.com/t34-dev/node-ts-starter#readme",
"dependencies": {
"dotenv": "^16.0.3",
"express": "^4.18.2"
},
"devDependencies": {
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.2",
"@types/express": "^4.17.21",
"@types/node": "^18.19.42",
"rollup": "^2.75.6",
"rollup-plugin-run": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"shx": "^0.3.4",
"typescript": "^5.0.3",
"vitest": "^2.0.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"prettier": "^3.3.3"
}
}