-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.24 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
{
"name": "node-typescript-boilerplate",
"version": "0.0.0",
"description": "Minimalistic boilerplate to quick-start Node.js development in TypeScript.",
"engines": {
"node": ">= 14.15 <15"
},
"devDependencies": {
"@types/jest": "~26.0.15",
"@types/node": "~14.14",
"@typescript-eslint/eslint-plugin": "~4.7.0",
"@typescript-eslint/parser": "~4.7.0",
"eslint": "~7.13.0",
"eslint-config-prettier": "~6.15.0",
"eslint-plugin-jest": "~24.1.3",
"jest": "~26.6.3",
"prettier": "~2.1.2",
"rimraf": "~3.0.2",
"ts-jest": "~26.4.4",
"tsutils": "~3.17.0",
"typescript": "~4.0.5"
},
"scripts": {
"start": "node build/src/main.js",
"clean": "rimraf coverage build tmp",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"author": "Jakub Synowiec <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"@types/lodash": "^4.14.165",
"lodash": "^4.17.20",
"mdns-server": "git://github.com:TobiiTechnology/mdns-server.git",
"rxjs": "^6.6.3",
"tslib": "~2.0.3"
},
"volta": {
"node": "14.15.0"
}
}