-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.87 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
{
"name": "exercise-principal-mykhailo",
"version": "0.0.1",
"description": "Markdown generator with text enrichment via external API",
"main": "dist/main.js",
"scripts": {
"test": "jest --collect-coverage --forceExit --runInBand",
"test:watch": "jest --watch",
"clean": "rm -rf ./dist/",
"build": "npm run clean && tsc -p tsconfig.json && tscpaths -p tsconfig.json -s ./src -o ./dist",
"start": "node dist/main.js --trace-warnings",
"dev": "NODE_ENV=development tsnd --respawn -r tsconfig-paths/register ./src/main.ts",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/z0r1k/x.git"
},
"keywords": [
"cocoa"
],
"author": "Mykhailo L.",
"license": "MIT",
"bugs": {
"url": "https://github.com/z0r1k/x/issues"
},
"engines": {
"node": ">=14.x"
},
"homepage": "https://github.com/z0r1k/x#readme",
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/lru-cache": "^5.1.0",
"@types/node": "^14.14.28",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"eslint": "^7.20.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-security": "^1.4.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.1",
"ts-node-dev": "^1.1.1",
"tsconfig-paths": "^3.9.0",
"tscpaths": "^0.0.9",
"typescript": "^4.1.5"
},
"dependencies": {
"axios": "^0.21.1",
"fastify": "^3.12.0",
"fastify-cors": "^5.2.0",
"lru-cache": "^6.0.0",
"pino-pretty": "^4.5.0"
}
}