This repository has been archived by the owner on Jun 11, 2021. It is now read-only.
forked from algolia/autocomplete
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
86 lines (86 loc) · 2.81 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
{
"name": "@algolia/autocomplete-monorepo",
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"build:clean": "lerna run build:clean",
"build:esm": "lerna run build:esm",
"build:types": "lerna run build:types",
"build:umd": "lerna run build:umd",
"build": "lerna run build",
"lint": "eslint --ext .js,.ts,.tsx .",
"prepare": "lerna run prepare",
"release": "shipjs prepare",
"start": "yarn run watch",
"test:size": "bundlesize",
"test:types": "tsc --noEmit",
"test": "jest",
"watch": "lerna run watch --parallel",
"website:build": "cd packages/website/ && yarn build",
"website:start": "cd packages/website/ && yarn start --host 0.0.0.0"
},
"devDependencies": {
"@babel/cli": "7.11.5",
"@babel/plugin-transform-react-jsx": "7.10.4",
"@babel/preset-env": "7.11.5",
"@babel/preset-typescript": "7.10.4",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "7.1.1",
"@rollup/plugin-replace": "2.3.3",
"@testing-library/dom": "7.24.1",
"@testing-library/jest-dom": "5.11.4",
"@testing-library/preact": "2.0.0",
"@testing-library/user-event": "12.1.3",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "2.19.0",
"@typescript-eslint/parser": "2.19.0",
"algoliasearch": "4.4.0",
"babel-eslint": "10.1.0",
"babel-loader": "8.1.0",
"babel-plugin-inline-json": "1.2.2",
"babel-plugin-inline-replace-variables": "1.3.1",
"babel-plugin-module-resolver": "4.0.0",
"bundlesize": "0.18.0",
"cssnano": "4.1.10",
"concurrently": "5.3.0",
"cypress": "4.8.0",
"dotenv": "8.2.0",
"eslint": "6.8.0",
"eslint-config-algolia": "15.0.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-cypress": "2.11.1",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jest": "23.20.0",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react": "7.20.6",
"eslint-plugin-react-hooks": "2.3.0",
"jest": "26.4.2",
"jest-watch-typeahead": "0.6.0",
"lerna": "3.22.1",
"prettier": "2.1.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"rollup": "1.31.0",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-filesize": "6.2.1",
"rollup-plugin-license": "0.13.0",
"rollup-plugin-terser": "5.2.0",
"shipjs": "0.21.0",
"stylelint": "13.7.0",
"stylelint-a11y": "1.2.3",
"stylelint-config-prettier": "8.0.2",
"stylelint-config-sass-guidelines": "7.1.0",
"stylelint-config-standard": "20.0.0",
"stylelint-no-unsupported-browser-features": "4.0.0",
"stylelint-order": "4.1.0",
"stylelint-prettier": "1.1.2",
"typescript": "3.7.5",
"watch": "1.0.2"
}
}