-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 892 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
38
39
40
41
42
43
44
45
46
47
{
"name": "ts-starter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "./bin/start-env.sh",
"test": "jest test --watch",
"prettier": "prettier --parser typescript --write src/**/*.ts",
"build": "tsc"
},
"lint-staged": {
"src/**/*.ts": [
"yarn prettier"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "ts",
"ignore": [
"src/**/*.spec.ts"
],
"exec": "ts-node ./src/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"husky": "^4.2.3",
"lint-staged": "^10.0.7",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"ts-node": "^8.6.2",
"tslint": "^6.0.0",
"typescript": "^3.7.5"
},
"dependencies": {
"@types/node": "^13.7.1"
}
}