-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·110 lines (110 loc) · 3.34 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "datasetarchiver",
"version": "2.1.3",
"description": "Client:Server Architecture to crawl web ressources",
"keywords": [
"archiver",
"datasetarchiver",
"crawler",
"datasets"
],
"author": "Thomas Weber",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/websi96/archiver.git"
},
"types": "src/@types",
"engines": {
"node": "12.1.0"
},
"main": "src/index.ts",
"scripts": {
"build": "tsc && ts-node build.ts && webpack",
"start": "node dist/index.js",
"test": "echo 'not yet implemented'",
"dev": "concurrently \"ts-node-dev src/index.ts\" \"webpack --mode=development \"",
"dev:master": "PORT=3000 MASTER=true ts-node-dev src/index.ts",
"dev:clients": "concurrently \"PORT=3001 CLIENT=true ts-node-dev src/index.ts\" \"PORT=3002 CLIENT=true ts-node-dev src/index.ts\" \"PORT=3003 CLIENT=true ts-node-dev src/index.ts\"",
"dev:client": "ts-node-dev src/index.ts"
},
"dependencies": {
"archiver": "^4.0.1",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"csv-parser": "^2.3.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"file-stream-rotator": "^0.5.7",
"helmet": "^3.22.0",
"mime": "^2.4.5",
"mongodb": "^3.5.7",
"mongoose": "^5.9.13",
"mongoose-unique-validator": "^2.0.3",
"morgan": "^1.10.0",
"pino": "^6.2.1",
"pug": "^2.0.4",
"python-shell": "^2.0.0",
"request": "^2.88.2",
"request-promise-native": "^1.0.8",
"robots-parser": "^2.1.1",
"serve-favicon": "^2.5.0",
"shelljs": "^0.8.4",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"stream-file-type": "^0.5.0",
"swagger-ui-dist": "^3.25.3"
},
"devDependencies": {
"@triply/yasgui": "^4.0.117",
"@types/archiver": "^3.1.0",
"@types/content-disposition": "^0.5.3",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.6",
"@types/helmet": "0.0.46",
"@types/mongodb": "^3.5.14",
"@types/mongoose": "^5.7.14",
"@types/mongoose-unique-validator": "^1.0.4",
"@types/morgan": "^1.9.0",
"@types/pino": "^6.0.0",
"@types/python-shell": "^0.4.2",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.5",
"@types/request": "^2.48.4",
"@types/request-promise-native": "^1.0.17",
"@types/serve-favicon": "^2.5.0",
"@types/shelljs": "^0.8.7",
"@types/socket.io": "^2.1.4",
"@types/socket.io-client": "^1.4.33",
"@types/swagger-ui-dist": "^3.0.5",
"@types/swagger-ui-react": "^3.23.1",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"acorn": "^7.2.0",
"concurrently": "^5.2.0",
"css-loader": "^3.5.3",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.20.0",
"leaflet": "~1.3.1",
"nodemon": "^2.0.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router": "5.2.0",
"react-router-dom": "^5.2.0",
"redux": "^3.7.2",
"semantic-ui-react": "^0.88.2",
"source-map-loader": "^0.2.4",
"style-loader": "^1.2.1",
"swagger-ui": "^3.25.3",
"swagger-ui-react": "^3.25.3",
"ts-loader": "^7.0.4",
"ts-node": "^8.10.1",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.9.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
}
}