-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.02 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
{
"name": "tsnode.boilerplate",
"version": "1.0.0",
"description": "Boilerplate for Typescript-Node projects",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node --experimental-specifier-resolution=node --loader ./loader.js ./src/index.ts",
"build": "npx tsc",
"lint": "eslint . --fix",
"test": "npx jest"
},
"author": "Erick Moreno",
"license": "ISC",
"devDependencies": {
"@babel/core": "7.17.10",
"@babel/preset-env": "7.17.10",
"@babel/preset-typescript": "7.16.7",
"@tsconfig/node16": "1.0.2",
"@types/node": "17.0.31",
"@typescript-eslint/eslint-plugin": "5.21.0",
"@typescript-eslint/parser": "5.21.0",
"babel-jest": "27.5.1",
"eslint": "8.14.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.0.0",
"prettier": "2.6.2",
"ts-jest": "27.1.4",
"ts-node": "10.7.0",
"tsconfig-paths": "4.0.0",
"typescript": "4.6.4",
"@types/jest": "27.4.1"
},
"dependencies": {}
}