-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.41 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.41 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
{
"name": "node-typescript-boilerplate",
"version": "0.0.0",
"description": "Minimalistic boilerplate to quick-start Node.js development in TypeScript.",
"scripts": {
"dev": "run-p build:watch start:dev",
"start:dev": "nodemon build/src/main.js",
"start": "node build/src/main.js",
"clean": "rimraf coverage build tmp",
"prebuild": "npm run lint",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest --watch",
"test:ci": "jest",
"coverage": "jest --coverage"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "3.4.0",
"@types/faker": "5.5.9",
"@types/jest": "27.0.3",
"@types/node": "16.11.19",
"@typescript-eslint/eslint-plugin": "5.47.1",
"@typescript-eslint/parser": "5.47.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.33.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-jest": "27.2.1",
"faker": "5.5.3",
"jest": "27.4.7",
"nodemon": "2.0.20",
"npm-run-all": "4.1.5",
"prettier": "2.8.3",
"rimraf": "3.0.2",
"ts-jest": "27.1.3",
"tslib": "2.4.0",
"tsutils": "3.21.0",
"typescript": "4.9.4"
},
"engines": {
"node": ">= 16.13 <17"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"volta": {
"node": "16.13.0"
}
}