forked from jsynowiec/node-typescript-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.78 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
{
"name": "node-typescript-boilerplate",
"version": "0.0.0",
"description": "Minimalistic boilerplate to quick-start Node.js development in TypeScript.",
"type": "module",
"engines": {
"node": ">= 16.13 <17"
},
"nodemonConfig": {
"ext": "js,json,ts,tsx"
},
"devDependencies": {
"@types/jest": "^29.1.1",
"@types/node": "^18.8.2",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"dependency-check": "^4.1.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5",
"eslint-plugin-jest": "^27.1.1",
"jest": "^29.1.2",
"prettier": "^2.7.1",
"rimraf": "^3.0",
"ts-jest": "^29.0.3",
"tsutils": "^3.21",
"typescript": "^4.8.4"
},
"scripts": {
"start": "node build/src/app.js",
"dev": "nodemon ./src/app.ts",
"check-deps": "dependency-check ./",
"nodemon": "nodemon /build/app.js",
"clean": "rimraf coverage build tmp",
"prebuild": "npm run lint",
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -w -p tsconfig.json",
"build:release": "npm run clean && tsc -p tsconfig.release.json",
"lint": "eslint . --ext .ts --ext .mts",
"test": "jest --coverage",
"prettier": "prettier --config .prettierrc --write .",
"test:watch": "jest --watch"
},
"author": "Jakub Synowiec <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.14",
"@types/http-errors": "^1.8.2",
"@types/morgan": "^1.9.3",
"cookie": "^0.5.0",
"cookie-parser": "^1.4.6",
"express": "^4.18.1",
"http-errors": "^2.0.0",
"morgan": "^1.10.0",
"nodemon": "^2.0.20",
"parser": "^0.1.4",
"tslib": "^2.4"
},
"volta": {
"node": "16.13.0"
}
}