-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.29 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
{
"name": "typescript-node-starter",
"version": "1.0.0",
"description": "Simple starter for typescript projects",
"main": "build/index.js",
"scripts": {
"start": "node -r dotenv/config build/index.js",
"prestart": "npm run build",
"start:dev": "nodemon -r dotenv/config --exec ts-node src/index.ts",
"start:build": "node -r dotenv/config build/index.js",
"build": "npx tsc -p .",
"lint": "eslint . --ext .ts",
"test": "jest --detectOpenHandles --runInBand --forceExit",
"test:watch": "npm test -- --watchAll --runInBand",
"coverage": "npm test -- --coverage --no-cache --detectOpenHandles",
"coverage:watch": "npm run coverage -- --forceExit --watch"
},
"keywords": [],
"author": "Ernesto Fuentes Gómez",
"license": "ISC",
"dependencies": {
"dotenv": "^6.2.0"
},
"devDependencies": {
"@types/jest": "^28.1.8",
"@types/node": "^18.7.13",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.0.1",
"module-alias": "^2.2.2",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
},
"_moduleAliases": {
"@src": "build"
}
}