-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.04 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
{
"name": "olympic-webscraper",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:khanguslee/olympic-webscraper.git",
"author": "khanguslee <khanguslee@gmail.com>",
"license": "MIT",
"scripts": {
"start": "tsc && node dist/index.js",
"build": "tsc",
"dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/cheerio": "^0.22.30",
"eslint": "^7.31.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^7.0.1",
"lint-staged": "^11.1.1",
"nodemon": "^2.0.12",
"prettier": "^2.3.2",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"dependencies": {
"axios": "^0.21.1",
"cheerio": "^1.0.0-rc.10"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./src/**/*.{js,ts}": [
"prettier --write",
"eslint",
"git add"
]
}
}