-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.07 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.07 KB
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": "http-crawler",
"version": "1.0.0",
"description": "",
"main": "app.ts",
"jest": {
"testPathIgnorePatterns": [
"dist"
]
},
"scripts": {
"start": "cross-env NODE_OPTIONS=--no-warnings ts-node app.ts",
"crawl": "cross-env NODE_OPTIONS=--no-warnings ts-node main.ts",
"test": "jest",
"build": "npx tsc",
"dev": "npx nodemon app.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MSoup/http-crawler.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/MSoup/http-crawler/issues"
},
"homepage": "https://github.com/MSoup/http-crawler#readme",
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@types/express": "^4.17.17",
"@types/jsdom": "^21.1.0",
"@types/node": "^18.13.0",
"cross-env": "^7.0.3",
"jest": "^29.4.1",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jsdom": "^21.1.0"
}
}