-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.67 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
49
50
51
{
"name": "node-ts",
"version": "1.0.0",
"description": "Node TS Starter",
"main": "index.js",
"scripts": {
"start": "node build/index.js",
"start:dev": "nodemon --exec 'node -r @swc-node/register' -r dotenv/config ./src/index.ts",
"build": "npm run types:check && tswc -- src -d build",
"types:check": "tsc --noEmit --diagnostics",
"test": "jest && node scripts/printCoverageHtml.js",
"test:watch": "jest --watch",
"prettier": "pretty-quick --staged",
"prettier:all": "prettier --write .",
"lint": "eslint --fix src",
"//": "Below script is to skip husky during Docker build",
"prepare": "test -d node_modules/husky && husky install || echo \"Husky is not installed\"",
"use:node": "node scripts/tsNodeVersion.js"
},
"author": "Ihsan Mujdeci",
"license": "ISC",
"devDependencies": {
"@swc-node/jest": "^1.6.2",
"@swc-node/register": "^1.6.2",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.35",
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@tsconfig/node12": "^1.0.11",
"@types/config": "^3.3.0",
"@types/jest": "^27.0.1",
"@types/node": "^12.20.55",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"dotenv": "^16.0.3",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-sonarjs": "^0.19.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-watch-typeahead": "^2.2.2",
"nodemon": "^2.0.20",
"prettier": "^2.8.5",
"pretty-quick": "^3.1.3",
"tswc": "^1.2.0",
"typescript": "5.0.2"
},
"dependencies": {
"@tsconfig/node18": "^18.2.2"
}
}