-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1.35 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
{
"name": "node-typescript-mocha-eslint",
"version": "1.0.0",
"description": "A guide to help you create a development environment with Node, TypeScript, Mocha, and ESLint.",
"main": "dist/index.js",
"repository": "https://github.com/christo8989/node-typescript-mocha-eslint.git",
"author": "Christopher Jeffery <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"build": "rimraf dist && ttsc --build tsconfig.prod.json",
"start": "yarn prod",
"dev": "nodemon --config .nodemonrc.json src/index.ts",
"prod": "node dist/index.js",
"test": "mocha --config .mocharc.json --watch src/**/*.test.ts",
"lint": "eslint src/**/*.ts --fix",
"types": "tsc --noEmit",
"prepare": "husky install"
},
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.14.0",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"chai": "^4.3.7",
"eslint": "^8.34.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"mocha": "^10.2.0",
"nodemon": "^2.0.20",
"rimraf": "^4.1.2",
"ts-node": "^10.9.1",
"ttypescript": "^1.5.15",
"typescript": "^4.9.5",
"typescript-transform-paths": "^3.4.6"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"git add"
]
}
}