-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
98 lines (98 loc) · 3.08 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
{
"name": "npm-search",
"version": "1.8.1",
"private": true,
"author": {
"name": "Algolia, Inc.",
"url": "https://www.algolia.com"
},
"scripts": {
"build:hot": "tsc -w --preserveWatchOutput",
"build": "tsc -b",
"clean": "rm -rf dist/",
"dev": "node -r ts-node/register/transpile-only -r dotenv/config --max-old-space-size=1500 src/index.ts",
"lint": "eslint --ext=jsx,ts,tsx,js .",
"prepare": "husky install",
"start": "UV_THREADPOOL_SIZE=64 node --max-old-space-size=1500 dist/index.js",
"start_new": "indexName=npm-search-new bootstrapIndexName=npm-search-new.tmp UV_THREADPOOL_SIZE=64 node --max-old-space-size=1500 dist/index.js",
"test:watch": "jest --watchAll --no-watchman",
"test:api-control": "./scripts/test-api-control",
"test": "jest --forceExit",
"publish:check": "node ./scripts/publish-check.mjs",
"publish:github": "./scripts/publish-github",
"publish:docker": "./scripts/publish-docker"
},
"license": "MIT",
"dependencies": {
"@algolia/requester-node-http": "4.14.2",
"@types/bluebird": "^3.5.39",
"algoliasearch": "4.14.2",
"bluebird": "^3.7.2",
"bunyan": "1.8.15",
"bunyan-debug-stream": "2.0.1",
"chalk": "4.1.2",
"dtrace-provider": "0.8.8",
"elastic-apm-node": "^3.49.1",
"escape-html": "1.0.3",
"got": "11.8.5",
"gravatar-url": "3.1.0",
"hosted-git-info": "2.7.1",
"lodash": "4.17.21",
"ms": "2.1.3",
"nano": "^10.1.2",
"nice-package": "3.1.2",
"numeral": "2.0.6",
"object-sizeof": "2.6.3",
"p-queue": "6.6.2",
"promise-rat-race": "1.5.1",
"throttled-queue": "^2.1.4",
"traverse": "0.6.7",
"truncate-utf8-bytes": "1.0.2"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/escape-html": "1.0.3",
"@types/hosted-git-info": "3.0.4",
"@types/jest": "28.1.8",
"@types/lodash": "4.14.184",
"@types/ms": "0.7.33",
"@types/numeral": "2.0.2",
"@types/traverse": "0.6.34",
"@types/truncate-utf8-bytes": "1.0.0",
"@typescript-eslint/eslint-plugin": "6.9.0",
"@typescript-eslint/parser": "6.9.0",
"dotenv": "16.0.1",
"eslint": "8.22.0",
"eslint-config-algolia": "22.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jasmine": "4.1.3",
"eslint-plugin-jest": "26.8.2",
"eslint-plugin-jsdoc": "46.8.2",
"eslint-plugin-prettier": "5.0.1",
"eslint-plugin-react": "7.30.1",
"husky": "8.0.1",
"jest": "29.7.0",
"lint-staged": "13.0.3",
"pre-commit": "1.2.2",
"prettier": "3.0.3",
"renovate-config-algolia": "2.1.10",
"semantic-release": "22.0.5",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"typescript": "5.2.2",
"validator": "13.7.0"
},
"engines": {
"node": "^18.0.0",
"yarn": "^1.22.0"
},
"repository": {
"type": "git",
"url": "https://github.com/algolia/npm-search.git"
},
"homepage": "https://github.com/algolia/npm-search",
"packageManager": "[email protected]"
}