generated from markfknight/vscode-typescript-node-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.4 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": "vscode-typescript-node-starter",
"version": "5.0.3",
"author": "markfknight ([email protected])",
"license": "MIT",
"scripts": {
"start": "npm run ts-node",
"start:dev": "nodemon --exec npm run ts-node",
"start:dev:test": "nodemon --exec npm run ts-node:test",
"ts-node": "ts-node ./src/index.ts",
"prets-node:test": "npm test",
"ts-node:test": "npm run ts-node",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"pretest": "npm run lint",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/markfknight/vscode-typescript-node-starter.git"
},
"bugs": {
"url": "https://github.com/markfknight/vscode-typescript-node-starter/issues"
},
"homepage": "https://github.com/markfknight/vscode-typescript-node-starter#readme",
"devDependencies": {
"@types/jest": "^26.0.21",
"@types/node": "^12.12.27",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.20.0",
"eslint": "^6.8.0",
"jest": "^25.5.4",
"nodemon": "^2.0.7",
"ts-jest": "^25.2.1",
"ts-node": "^8.6.2",
"typescript": "^4.2.3"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"notify": true,
"rootDir": "src/",
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$"
}
}