-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.3 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
{
"name": "ts-node-starter",
"version": "0.0.1",
"description": "Starter for ts-node app",
"main": "main.js",
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc",
"watch": "nodemon src/index.ts",
"test": "jest --coverage",
"view:cov": "serve coverage/lcov-report",
"clean": "rm -rf coverage dist",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' --fix",
"test:watch": "jest --coverage --watchAll"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/jest": "^25.2.3",
"@types/node": "^14.0.11",
"@types/source-map-support": "^0.5.1",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"dotenv": "^16.0.1",
"env-var": "^7.1.1",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^26.0.1",
"onchange": "^7.0.2",
"prettier": "^2.0.5",
"serve": "^11.3.2",
"source-map-support": "^0.5.19",
"ts-jest": "^26.1.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
},
"devDependencies": {
"jest-junit": "^13.0.0",
"nodemon": "^2.0.13"
}
}