-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.36 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
{
"name": "ts-node-boilerplate",
"version": "1.3.0",
"description": "Node Boilerplate from BinPar TypeScript Projects",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "tsc",
"test": "jest",
"test-dev": "NODE_ENV=development npx jest --watchAll",
"dev": "NODE_ENV=development nodemon --watch 'src/**/*.ts' --exec 'ts-node' ./src/index.ts",
"start": "node ./dist/index.js",
"lint": "npx eslint --config ./.eslintrc src/**/*.ts",
"docker-build": "docker build -t ts-node-boilerplate:latest ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/BinPar/ts-node-boilerplate.git"
},
"keywords": [
"ts-node-boilerplate",
"binpar",
"boilerplate",
"typescript"
],
"author": "Ignacio Ferro Picón <[email protected]> (https://binpar.com/)",
"license": "ISC",
"homepage": "https://binpar.com",
"dependencies": {
"winston": "^3.3.3"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^16.9.1",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-import": "^2.24.2",
"jest": "^27.2.0",
"nodemon": "^2.0.12",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
}
}