-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 884 Bytes
/
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-project",
"version": "1.0.0",
"description": "TypeScript node.js template",
"main": "index.js",
"engines": {
"node": ">=14.x"
},
"type": "commonjs",
"scripts": {
"dev": "nodemon",
"lint": "npx eslint .",
"start": "npm run build && node dist/index.js",
"build": "npx tsc",
"test": "npx jest --coverage",
"test:watch": "npx jest --watchAll"
},
"keywords": [
"TypeScript",
"node.js"
],
"author": "Deepak Choudhari",
"license": "ISC",
"devDependencies": {
"@tsconfig/node14": "^1.0.1",
"@types/jest": "^27.5.1",
"@types/node": "^17.0.36",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"eslint": "^8.16.0",
"jest": "^28.1.0",
"nodemon": "^2.0.16",
"ts-jest": "^28.0.3",
"ts-node": "^10.8.0",
"typescript": "^4.7.2"
}
}