-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.51 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
{
"name": "wiki-analyzer-statistic-collector-service",
"version": "1.0.0",
"description": "",
"main": "collector.ts",
"scripts": {
"test": "jest",
"start": "tsc && node dist/src/collector.js",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint \"{src,test}/**/*.ts\" --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/meta-coders/wiki-analyzer-statistic-collector-service.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/meta-coders/wiki-analyzer-statistic-collector-service/issues"
},
"homepage": "https://github.com/meta-coders/wiki-analyzer-statistic-collector-service#readme",
"dependencies": {
"@types/pg-format": "^1.0.1",
"dom-parser": "^0.1.6",
"pg": "^8.5.1",
"pg-format": "^1.0.4",
"rxjs": "^6.6.3",
"websocket": "^1.0.33"
},
"devDependencies": {
"@types/faker": "^5.1.5",
"@types/jest": "^26.0.19",
"@types/node": "^14.0.18",
"@types/pg": "^7.14.7",
"@types/websocket": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"faker": "^5.1.0",
"fastify-tsconfig": "^1.0.0",
"jest": "^26.6.3",
"jest-websocket-mock": "^2.2.0",
"mock-socket": "^9.0.3",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.0.2"
}
}