-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·51 lines (51 loc) · 1.58 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
{
"name": "wiki-analyzer",
"version": "1.0.0",
"description": "",
"main": "app.ts",
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run build:ts && tsc -p test/tsconfig.test.json && tap test/**/*.test.ts",
"start": "npm run build:ts && fastify start -l info dist/app.js",
"build:ts": "tsc",
"dev": "tsc && concurrently -k -p \"[{name}]\" -n \"TypeScript,App\" -c \"yellow.bold,cyan.bold\" \"tsc -w\" \"fastify start -w -P dist/app.js\"",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint \"{src,test}/**/*.ts\" --fix"
},
"repository": "[email protected]:meta-coders/wiki-analyzer.git",
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/meta-coders/wiki-analyzer/issues"
},
"homepage": "https://github.com/meta-coders/wiki-analyzer#readme",
"dependencies": {
"axios": "^0.21.0",
"eventsource": "^1.0.7",
"fastify": "^3.0.0",
"fastify-autoload": "^3.0.2",
"fastify-cli": "^2.5.1",
"fastify-plugin": "^3.0.0",
"fastify-websocket": "^2.0.11",
"rxjs": "^6.6.3"
},
"devDependencies": {
"@types/eventsource": "^1.1.5",
"@types/node": "^14.0.18",
"@types/tap": "^14.10.0",
"@types/ws": "^7.4.0",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"concurrently": "^5.1.0",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-import": "^2.22.1",
"fastify-tsconfig": "^1.0.0",
"prettier": "^2.2.1",
"tap": "^14.0.0",
"typescript": "^4.0.2"
}
}