generated from kitamstudios/typescript-nodejs-app-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.68 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
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@kitamstudios/typescript-nodejs-app-starter",
"version": "1.0.0",
"description": "A template for nodejs command line app in typescript complete with build & lint setup.",
"author": "Partho P. Das <parthopdas@live.com>",
"main": "index.js",
"keywords": [],
"license": "ISC",
"scripts": {
"build": "rimraf ./build && tsc",
"start:dev": "nodemon",
"start": "yarn run build && node build/index.js",
"lint": "eslint **/*.ts",
"lint:staged": "lint-staged"
},
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"fast-xml-parser": "^3.17.4",
"md5": "^2.3.0",
"moment": "^2.29.0",
"winston": "^3.3.3",
"yargs": "^16.0.3"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/cheerio": "^0.22.22",
"@types/md5": "^2.2.0",
"@types/moment": "^2.13.0",
"@types/node": "^13.7.1",
"@types/winston": "^2.4.4",
"@types/yargs": "^15.0.7",
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.19.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"husky": ">=4",
"lint-staged": ">=10",
"nodemon": "^1.19.1",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"ts-node": "^9.0.0",
"typescript": "^3.7.5"
},
"husky": {
"hooks": {
"pre-commit": "yarn run lint:staged"
}
},
"lint-staged": {
"*.{ts,js}": "eslint --cache"
},
"nodemonConfig": {
"verbose": true,
"watch": [
"src"
],
"ext": ".ts,.js",
"ignore": [],
"exec": "node -r ts-node/register ./src/index.ts update-feed"
}
}