-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.22 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
{
"name": "ts-node-boilerplate",
"version": "0.0.1",
"description": "training boilerplate for nodejs whith Typescript usage",
"main": "index.ts",
"scripts": {
"start:dev": "NODE_ENV=development nodemon --watch './src/**/*.ts' --exec 'node --loader ts-node/esm' ./src/application.bootstrap.ts",
"start:production": "NODE_ENV=production node ./dist/src/application.bootstrap.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc -p tsconfig.build.json",
"build:clean": "rm -rf dist",
"postpuiblish":"build:clean"
},
"type": "module",
"author": "TCDP",
"license": "MIT",
"devDependencies": {
"@types/node": "^18.6.1",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.6.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"nodemon": "^2.0.19",
"prettier-eslint": "^15.0.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0"
},
"dependencies": {
"typescript": "^4.7.4"
}
}