-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 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
45
46
47
48
49
{
"name": "reports",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node --inspect=5858 -r ts-node/register ./src/app.ts",
"start:watch": "nodemon",
"build": "tsc",
"format": "prettier --write src/**/*.ts"
},
"keywords": [],
"author": "StarkOne",
"license": "ISC",
"devDependencies": {
"@types/node": "^12.12.21",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.19.1",
"nodemon": "^2.0.2",
"prettier": "1.19.1",
"ts-node": "^8.5.4",
"typescript": "^3.7.4"
},
"nodemonConfig": {
"ignore": [
"**/*.test.ts",
"**/*.spec.ts",
".git",
"node_modules"
],
"watch": [
"src"
],
"exec": "npm start",
"ext": "ts"
},
"dependencies": {
"@types/cheerio": "^0.22.15",
"@types/puppeteer": "^2.0.0",
"axios": "^0.21.2",
"chalk": "^3.0.0",
"cheerio": "^1.0.0-rc.3",
"cli-spinner": "^0.2.10",
"dotenv": "^8.2.0",
"enquirer": "^2.3.2",
"moment": "^2.24.0",
"puppeteer": "^2.0.0"
}
}