-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.24 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": "mlcrawler",
"author": "Gilmaicor",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "tsc",
"dev:server": "tsnd --transpile-only --ignore-watch node_modules --respawn src/server.ts",
"test": "jest",
"start": "node dist/src/server.js",
"debug": "node --inspect src/server.js"
},
"devDependencies": {
"@types/cheerio": "^0.22.21",
"@types/connect-timeout": "^0.0.34",
"@types/cors": "^2.8.7",
"@types/express": "^4.17.7",
"@types/jest": "^26.0.10",
"@types/morgan": "^1.9.1",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.2.1",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.4.2",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"supertest": "^4.0.2",
"ts-jest": "^26.2.0",
"ts-node-dev": "^1.0.0-pre.60",
"typescript": "^4.0.2"
},
"dependencies": {
"axios": "^0.20.0",
"body-parser": "^1.19.0",
"cheerio": "^1.0.0-rc.3",
"connect-timeout": "^1.9.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"morgan": "^1.10.0"
}
}