-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
82 lines (82 loc) · 2.76 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
{
"name": "@algolia/recommend-monorepo",
"private": true,
"license": "MIT",
"engines": {
"node": ">=18.14 <19"
},
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"build:clean": "lerna run build:clean --no-private",
"build:esm": "lerna run build:esm --no-private",
"build:types": "lerna run build:types --no-private",
"build:umd": "lerna run build:umd --no-private",
"build": "lerna run build --no-private",
"format": "prettier --write .",
"lint": "eslint --ext .js,.ts,.tsx .",
"playground-js:start": "yarn workspace @algolia/recommend-js-example start",
"playground-templating:start": "yarn workspace @algolia/recommend-templating-example start",
"playground:start": "yarn workspace @algolia/recommend-react-example start",
"prepare": "lerna run prepare --no-private",
"release": "shipjs prepare",
"test:size": "bundlesize",
"test:types": "tsc --noEmit",
"test": "jest"
},
"devDependencies": {
"@algolia/client-search": "4.9.1",
"@babel/cli": "7.20.7",
"@babel/plugin-transform-react-jsx": "7.20.13",
"@babel/plugin-transform-runtime": "7.19.6",
"@babel/preset-env": "7.20.2",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "7.18.6",
"@rollup/plugin-babel": "6.0.3",
"@rollup/plugin-commonjs": "24.0.1",
"@rollup/plugin-json": "6.0.0",
"@rollup/plugin-node-resolve": "15.0.1",
"@rollup/plugin-replace": "5.0.2",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "12.1.5",
"@testing-library/react-hooks": "8.0.1",
"@types/jest": "^29.4.0",
"@types/react": "^17.0.5",
"@typescript-eslint/eslint-plugin": "2.19.0",
"@typescript-eslint/parser": "2.19.0",
"babel-eslint": "10.1.0",
"babel-plugin-inline-replace-variables": "1.3.1",
"bundlesize": "0.18.0",
"eslint": "6.8.0",
"eslint-config-algolia": "15.0.0",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-cypress": "2.11.2",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.1.3",
"eslint-plugin-prettier": "3.2.0",
"eslint-plugin-react": "7.21.5",
"eslint-plugin-react-hooks": "4.2.0",
"events": "^3.1.0",
"https-browserify": "^1.0.0",
"jest": "29.4.3",
"jest-environment-jsdom": "^29.4.3",
"jest-fail-on-console": "^3.0.2",
"jest-watch-typeahead": "^2.2.2",
"lerna": "6.5.1",
"prettier": "2.2.1",
"process": "^0.11.10",
"punycode": "^1.4.1",
"querystring-es3": "^0.2.1",
"rollup": "3.15.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-filesize": "9.1.2",
"rollup-plugin-terser": "7.0.2",
"shipjs": "0.23.3",
"stream-http": "^3.1.0",
"typescript": "4.9.5",
"url": "^0.11.0"
}
}