-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.1 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
{
"name": "crawler-api",
"version": "1.0.0",
"description": "an API server to connect to the crawler storage system",
"main": "index.js",
"scripts": {
"start:dev": "nodemon",
"start:debug": "npm run build && DEBUG=server,wss,db node build/index.js",
"start": "npm run build && node build/index.js",
"build": "rimraf ./build && tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"crawler",
"API"
],
"author": "Joe D'Alessandro",
"license": "ISC",
"dependencies": {
"@koa/router": "^12.0.0",
"debug": "^4.3.4",
"dotenv": "^16.0.3",
"koa": "^2.13.4",
"mongodb": "^4.12.1",
"natural": "^5.2.4",
"stopword": "^2.0.5",
"ws": "^8.11.0"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/dotenv": "^8.2.0",
"@types/koa": "^2.13.5",
"@types/koa__router": "^12.0.0",
"@types/mongodb": "^4.0.7",
"@types/natural": "^5.1.1",
"@types/stopword": "^2.0.0",
"@types/ws": "^8.5.3",
"nodemon": "^2.0.20",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
}
}