-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
66 lines (66 loc) · 2.23 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
{
"name": "@algolia/netlify",
"version": "1.0.15",
"private": true,
"author": "Algolia Team <contact@algolia.com>",
"license": "MIT",
"repository": "https://github.com/algolia/algoliasearch-netlify.git",
"workspaces": [
"frontend",
"plugin"
],
"scripts": {
"build": "echo 'Website already built in public'",
"build:plugin": "cd plugin && yarn build",
"dev": "yarn && concurrently --success first --kill-others --names 'plugin,frontend,website' --prefix-colors 'magenta,cyan,yellow' 'yarn dev:plugin' 'yarn dev:frontend' 'yarn dev:website'",
"dev:frontend": "cd frontend && yarn dev",
"dev:plugin": "cd plugin && yarn dev",
"dev:website": "http-server --port 9000 -c -1 public",
"changelog:generate": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"lint": "eslint --ext=jsx,ts,tsx,js .",
"release": "./scripts/release.sh",
"test": "jest"
},
"devDependencies": {
"@algolia/algoliasearch-netlify-frontend": "*",
"@algolia/netlify-plugin-crawler": "*",
"@netlify/build": "26.5.2",
"@types/jest": "27.4.1",
"@types/node": "16.11.26",
"@typescript-eslint/eslint-plugin": "5.18.0",
"@typescript-eslint/parser": "5.18.0",
"concurrently": "7.1.0",
"conventional-changelog": "3.1.25",
"conventional-changelog-cli": "2.2.2",
"eslint": "8.12.0",
"eslint-config-algolia": "20.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-algolia": "2.0.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "25.7.0",
"eslint-plugin-jsdoc": "37.9.7",
"eslint-plugin-jsx-a11y": "6.6.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-react": "7.29.4",
"eslint-plugin-react-hooks": "4.4.0",
"eslint-plugin-standard": "4.1.0",
"http-server": "14.1.0",
"jest": "27.5.1",
"json": "11.0.0",
"netlify-cli": "8.19.3",
"nodemon": "2.0.15",
"prettier": "2.7.1",
"renovate-config-algolia": "2.1.9",
"ts-jest": "27.1.4",
"typescript": "4.6.3"
},
"engines": {
"yarn": "1.*",
"node": "16.*"
},
"packageManager": "yarn@3.2.0"
}